| 217 | } |
| 218 | |
| 219 | void SpherePrimitive::memoryUsage( Object::MemoryAccumulator &a ) const |
| 220 | { |
| 221 | Primitive::memoryUsage( a ); |
| 222 | a.accumulate( sizeof( m_radius ) ); |
| 223 | a.accumulate( sizeof( m_zMin ) ); |
| 224 | a.accumulate( sizeof( m_zMax ) ); |
| 225 | a.accumulate( sizeof( m_thetaMax ) ); |
| 226 | } |
| 227 | |
| 228 | void SpherePrimitive::hash( MurmurHash &h ) const |
| 229 | { |
nothing calls this directly
no test coverage detected