| 181 | } |
| 182 | |
| 183 | void DiskPrimitive::memoryUsage( Object::MemoryAccumulator &a ) const |
| 184 | { |
| 185 | Primitive::memoryUsage( a ); |
| 186 | a.accumulate( sizeof( m_radius ) ); |
| 187 | a.accumulate( sizeof( m_z ) ); |
| 188 | a.accumulate( sizeof( m_thetaMax ) ); |
| 189 | } |
| 190 | |
| 191 | void DiskPrimitive::hash( MurmurHash &h ) const |
| 192 | { |
nothing calls this directly
no test coverage detected