------------------------------------------------------------------------------------------------------
| 421 | |
| 422 | // ------------------------------------------------------------------------------------------------------ |
| 423 | EveSpherePinIndexTree::~EveSpherePinIndexTree( void ) |
| 424 | { |
| 425 | if( m_tree ) |
| 426 | { |
| 427 | ClearTree( m_tree ); |
| 428 | m_tree = 0; |
| 429 | } |
| 430 | |
| 431 | if( m_faces ) |
| 432 | { |
| 433 | delete[] m_faces; |
| 434 | m_faces = 0; |
| 435 | } |
| 436 | } |
| 437 | |
| 438 | // ------------------------------------------------------------------------------------------------------ |
| 439 | int EveSpherePinIndexTree::Initialize() |
nothing calls this directly
no test coverage detected