| 51 | IE_CORE_DEFINEOBJECTTYPEDESCRIPTION( PointsPrimitive ); |
| 52 | |
| 53 | PointsPrimitive::PointsPrimitive( size_t numPoints ) |
| 54 | : m_numPoints( numPoints ) |
| 55 | { |
| 56 | } |
| 57 | |
| 58 | PointsPrimitive::PointsPrimitive( V3fVectorDataPtr points, FloatVectorDataPtr radii ) |
| 59 | : m_numPoints( points->readable().size() ) |