-------------------------------------------------------------------------------------- Description: Implements IInitialize interface. Updates normalized plane value. Return Value: true always --------------------------------------------------------------------------------------
| 46 | // true always |
| 47 | // -------------------------------------------------------------------------------------- |
| 48 | bool Tr2PlaneConstraint::Initialize() |
| 49 | { |
| 50 | m_normalizedPlane = Normalize( reinterpret_cast<Plane&>( m_plane ) ); |
| 51 | for( auto it = m_onCollisionEmitters.begin(); it != m_onCollisionEmitters.end(); ++it ) |
| 52 | { |
| 53 | ( *it )->SetThreadSafeFlag(); |
| 54 | } |
| 55 | return true; |
| 56 | } |
| 57 | |
| 58 | // -------------------------------------------------------------------------------------- |
| 59 | // Description: |
nothing calls this directly
no test coverage detected