Home
last modified time | relevance | path

Searched refs:p2 (Results 1 – 4 of 4) sorted by relevance

/NW4C-1.2.23/sources/libraries/lyt/
Dlyt_Suppliment.cpp39 const nw::math::MTX44* p2) in MTX44Mult() argument
43 NW_NULL_ASSERT(p2); in MTX44Mult()
54 value += p1->m[i][k] * p2->m[k][j]; in MTX44Mult()
61 tmp.m[3][j] = p2->m[3][j]; in MTX44Mult()
/NW4C-1.2.23/include/nw/lyt/
Dlyt_Supplement.h29 math::MTX44* MTX44Mult(math::MTX44* pOut, const math::MTX34* p1, const math::MTX44* p2);
/NW4C-1.2.23/include/nw/demo/
Ddemo_GraphicsDrawing.h136 void DrawLine( const math::VEC2& p1, const math::VEC2& p2, ut::Color8 color );
/NW4C-1.2.23/sources/libraries/demo/
Ddemo_GraphicsDrawing.cpp241 GraphicsDrawing::DrawLine( const math::VEC2& p1, const math::VEC2& p2, ut::Color8 color ) in DrawLine() argument
247 s32 count = this->BuildLine(p1, p2, m_LineWidth, &m_PositionStream[0]); in DrawLine()