Closed n0F4x closed 3 months ago
vec has data(), while quat has value_ptr(). Why not use the same function name when the two mean the same?
vec
data()
quat
value_ptr()
They were original all called value_ptr but i changed it to data to match the previous usage of std::array in older versions. I must have just forgotten about changing it for the quat type. Will fix soon.
value_ptr
data
std::array
vec
hasdata()
, whilequat
hasvalue_ptr()
. Why not use the same function name when the two mean the same?