| 119 | } |
| 120 | |
| 121 | bool TriFrustum::IsSphereVisible( const Vector4* sphere, bool cullBackPlane ) const |
| 122 | { |
| 123 | return IsSphereVisible( *reinterpret_cast<const Vector3*>( sphere ), sphere->w, cullBackPlane ); |
| 124 | } |
| 125 | |
| 126 | // --------------------------------------------------------------------------- |
| 127 | bool TriFrustum::IsSphereVisible( const Vector3& center, float radius, bool cullBackPlane ) const |
no outgoing calls
no test coverage detected