| 30 | } |
| 31 | |
| 32 | Vector2 LineNormal( const Vector2& p0, const Vector2& p1 ) |
| 33 | { |
| 34 | Vector2 n0( p1 - p0 ); |
| 35 | return Vector2( XMVector2Normalize( Vector2( -n0.y, n0.x ) ) ); |
| 36 | } |
| 37 | |
| 38 | uint32_t GetVertexDeclarationHandle( Tr2RenderContext& renderContext ) |
| 39 | { |
no outgoing calls
no test coverage detected