| 96 | } |
| 97 | |
| 98 | bool PointsPrimitive::isEqualTo( const Object *other ) const |
| 99 | { |
| 100 | if( !Primitive::isEqualTo( other ) ) |
| 101 | { |
| 102 | return false; |
| 103 | } |
| 104 | const PointsPrimitive *tOther = static_cast<const PointsPrimitive *>( other ); |
| 105 | if( tOther->getNumPoints()!=getNumPoints() ) |
| 106 | { |
| 107 | return false; |
| 108 | } |
| 109 | return true; |
| 110 | } |
| 111 | |
| 112 | void PointsPrimitive::memoryUsage( Object::MemoryAccumulator &a ) const |
| 113 | { |
nothing calls this directly
no test coverage detected