Lines Matching refs:VEC2
143 …m_ShapePositionStreamArray = static_cast<math::VEC2*>( m_ShapeAllocator->Alloc( shapePositionStrea… in InitializeShape()
149 m_ShapePositionStreamArray[ index ] = math::VEC2( 0.0f, 0.0f ); in InitializeShape()
248 GraphicsDrawing::DrawLine( const math::VEC2& p1, const math::VEC2& p2, ut::Color8 color ) in DrawLine()
262 GraphicsDrawing::DrawRectangle( const math::VEC2& pos, const math::VEC2& size, ut::Color8 color ) in DrawRectangle()
268 count += this->BuildLine( pos, math::VEC2( pos.x + size.x, pos.y ), in DrawRectangle()
272 math::VEC2( pos.x + size.x, pos.y ), pos + size, in DrawRectangle()
275 count += this->BuildLine( pos + size, math::VEC2( pos.x, pos.y + size.y ), in DrawRectangle()
278 count += this->BuildLine(math::VEC2( pos.x, pos.y + size.y ), pos, in DrawRectangle()
289 GraphicsDrawing::FillRectangle( const math::VEC2& pos, const math::VEC2& size, ut::Color8 color ) in FillRectangle()
303 GraphicsDrawing::FillTriangle( const math::VEC2& pt1, const math::VEC2& pt2, const math::VEC2& pt3,… in FillTriangle()
317 GraphicsDrawing::FillTriangles( const math::VEC2* pPointArray, s32 pointCount, ut::Color8 color ) in FillTriangles()
699 …raphicsDrawing::BuildTriangle( const math::VEC2& pt1, const math::VEC2& pt2, const math::VEC2& pt3… in BuildTriangle()
713 const math::VEC2& pt1, in BuildRectangle()
714 const math::VEC2& pt2, in BuildRectangle()
715 const math::VEC2& pt3, in BuildRectangle()
716 const math::VEC2& pt4, in BuildRectangle()
717 math::VEC2 *pVecArray ) in BuildRectangle()
730 GraphicsDrawing::BuildRectangle( const math::VEC2& pos, const math::VEC2& size, math::VEC2 *pVecArr… in BuildRectangle()
737 math::VEC2(pos.x + size.x, pos.y), in BuildRectangle()
739 math::VEC2(pos.x, pos.y + size.y), in BuildRectangle()
747 GraphicsDrawing::BuildLine( const math::VEC2& pt1, const math::VEC2& pt2, f32 lineWidth, math::VEC2… in BuildLine()
752 math::VEC2 direction = pt1 - pt2; in BuildLine()
753 math::VEC2 ortho = math::VEC2( direction.y, - direction.x ); in BuildLine()