| 72 | } |
| 73 | |
| 74 | void PointsPrimitive::copyFrom( const Object *other, IECore::Object::CopyContext *context ) |
| 75 | { |
| 76 | Primitive::copyFrom( other, context ); |
| 77 | const PointsPrimitive *tOther = static_cast<const PointsPrimitive *>( other ); |
| 78 | m_numPoints = tOther->getNumPoints(); |
| 79 | } |
| 80 | |
| 81 | void PointsPrimitive::save( IECore::Object::SaveContext *context ) const |
| 82 | { |
nothing calls this directly
no test coverage detected