| 348 | } |
| 349 | |
| 350 | void NURBSPrimitive::memoryUsage( Object::MemoryAccumulator &a ) const |
| 351 | { |
| 352 | Primitive::memoryUsage( a ); |
| 353 | a.accumulate( sizeof( m_uOrder ) * 2 ); |
| 354 | a.accumulate( sizeof( m_uMin ) * 4 ); |
| 355 | a.accumulate( m_uKnot.get() ); |
| 356 | a.accumulate( m_vKnot.get() ); |
| 357 | } |
| 358 | |
| 359 | void NURBSPrimitive::hash( MurmurHash &h ) const |
| 360 | { |
nothing calls this directly
no test coverage detected