| 251 | } |
| 252 | |
| 253 | void EveSpherePin::UpdateVisibility( const EveUpdateContext& updateContext, const Matrix& parentTransform ) |
| 254 | { |
| 255 | if( !m_display ) |
| 256 | { |
| 257 | return; |
| 258 | } |
| 259 | |
| 260 | // position the lines with parent transform |
| 261 | UpdateViewDependentData( updateContext.GetFrustum(), parentTransform ); |
| 262 | Vector4 boundingSphere = m_boundingSphere; |
| 263 | BoundingSphereTransform( m_worldTransform, boundingSphere ); |
| 264 | } |
| 265 | |
| 266 | void EveSpherePin::GetRenderables( std::vector<ITr2Renderable*>& renderables ) |
| 267 | { |
nothing calls this directly
no test coverage detected