You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allows converting the internal data from one data type to another.
Jeroen Eggermont suggested that it could be useful to convert data to a smaller data type, if possible. Example:
// Converts internal data to std::vector<std::int8_t>
pointData->convertInternalData(PointData::ElementTypeSpecifier::int8);
Which is equivalent to:
pointData->convertInternalData<std::int8_t>();
0 commit comments