Lines Matching refs:VEC2

141 …m_ShapePositionStreamArray = static_cast<math::VEC2*>( m_ShapeAllocator->Alloc( shapePositionStrea…  in InitializeShape()
147 m_ShapePositionStreamArray[ index ] = math::VEC2( 0.0f, 0.0f ); in InitializeShape()
246 GraphicsDrawing::DrawLine( const math::VEC2& p1, const math::VEC2& p2, ut::Color8 color ) in DrawLine()
260 GraphicsDrawing::DrawRectangle( const math::VEC2& pos, const math::VEC2& size, ut::Color8 color ) in DrawRectangle()
266 count += this->BuildLine( pos, math::VEC2( pos.x + size.x, pos.y ), in DrawRectangle()
270 math::VEC2( pos.x + size.x, pos.y ), pos + size, in DrawRectangle()
273 count += this->BuildLine( pos + size, math::VEC2( pos.x, pos.y + size.y ), in DrawRectangle()
276 count += this->BuildLine(math::VEC2( pos.x, pos.y + size.y ), pos, in DrawRectangle()
287 GraphicsDrawing::FillRectangle( const math::VEC2& pos, const math::VEC2& size, ut::Color8 color ) in FillRectangle()
301 GraphicsDrawing::FillTriangle( const math::VEC2& pt1, const math::VEC2& pt2, const math::VEC2& pt3,… in FillTriangle()
315 GraphicsDrawing::FillTriangles( const math::VEC2* pPointArray, s32 pointCount, ut::Color8 color ) in FillTriangles()
697 …raphicsDrawing::BuildTriangle( const math::VEC2& pt1, const math::VEC2& pt2, const math::VEC2& pt3… in BuildTriangle()
711 const math::VEC2& pt1, in BuildRectangle()
712 const math::VEC2& pt2, in BuildRectangle()
713 const math::VEC2& pt3, in BuildRectangle()
714 const math::VEC2& pt4, in BuildRectangle()
715 math::VEC2 *pVecArray ) in BuildRectangle()
728 GraphicsDrawing::BuildRectangle( const math::VEC2& pos, const math::VEC2& size, math::VEC2 *pVecArr… in BuildRectangle()
735 math::VEC2(pos.x + size.x, pos.y), in BuildRectangle()
737 math::VEC2(pos.x, pos.y + size.y), in BuildRectangle()
745 GraphicsDrawing::BuildLine( const math::VEC2& pt1, const math::VEC2& pt2, f32 lineWidth, math::VEC2 in BuildLine()
750 math::VEC2 direction = pt1 - pt2; in BuildLine()
751 math::VEC2 ortho = math::VEC2( direction.y, - direction.x ); in BuildLine()