template<typename T, GA_AttributeOwner T_OWNER>
class GA_ROGenericHandle< T, T_OWNER >
Read-only generic handle.
The handle provides read-only access to attributedata. The T
template parameter can be specialized with
- float
- UT_Vector2
- UT_Vector3
- UT_Vector4 (see specializations below)
- UT_Matrix3
- UT_Matrix4
- GA_Offset (see specializations below) The
T_OWNER
parameter can be specialized with
- GA_ATTRIB_POINT
Point offsets will be passeed to math.getValue(). Only point attributes will be modified for GA_Offset specializations.
- GA_ATTRIB_VERTEX Vertex offsets must be passed to math.getValue(). Both point and vertex attributes will be modified with the GA_Offset specialization.
The offsets passed to getValue()
must match the T_OWNER
template parameter.
Definition at line 90 of file GA_GenericHandle.h.