Lines Matching refs:VEC2

241 GraphicsDrawing::DrawLine( const math::VEC2& p1, const math::VEC2& p2, ut::Color8 color )  in DrawLine()
256 GraphicsDrawing::DrawRectangle( const math::VEC2& pos, const math::VEC2& size, ut::Color8 color ) in DrawRectangle()
264 …count += this->BuildLine(pos, math::VEC2(pos.x + size.x, pos.y), m_LineWidth, &m_PositionSt… in DrawRectangle()
265 …count += this->BuildLine(math::VEC2(pos.x + size.x, pos.y), pos + size, m_LineWidth, &m_PositionSt… in DrawRectangle()
266 …count += this->BuildLine(pos + size, math::VEC2(pos.x, pos.y + size.y), m_LineWidth, &m_PositionSt… in DrawRectangle()
267 …count += this->BuildLine(math::VEC2(pos.x, pos.y + size.y), pos, m_LineWidth, &m_PositionSt… in DrawRectangle()
278 GraphicsDrawing::FillRectangle( const math::VEC2& pos, const math::VEC2& size, ut::Color8 color ) in FillRectangle()
294 GraphicsDrawing::FillTriangle( const math::VEC2& pt1, const math::VEC2& pt2, const math::VEC2& pt3,… in FillTriangle()
309 GraphicsDrawing::FillTriangles( const math::VEC2* pPointArray, s32 pointCount, ut::Color8 color ) in FillTriangles()
325 …raphicsDrawing::BuildTriangle( const math::VEC2& pt1, const math::VEC2& pt2, const math::VEC2& pt3… in BuildTriangle()
339 const math::VEC2& pt1, in BuildRectangle()
340 const math::VEC2& pt2, in BuildRectangle()
341 const math::VEC2& pt3, in BuildRectangle()
342 const math::VEC2& pt4, in BuildRectangle()
343 math::VEC2 *pVecArray ) in BuildRectangle()
356 GraphicsDrawing::BuildRectangle( const math::VEC2& pos, const math::VEC2& size, math::VEC2 *pVecArr… in BuildRectangle()
363 math::VEC2(pos.x + size.x, pos.y), in BuildRectangle()
365 math::VEC2(pos.x, pos.y + size.y), in BuildRectangle()
373 GraphicsDrawing::BuildLine( const math::VEC2& pt1, const math::VEC2& pt2, f32 lineWidth, math::VEC2 in BuildLine()
378 math::VEC2 direction = pt1 + pt2; in BuildLine()
379 math::VEC2 ortho = math::VEC2(direction.y, -direction.x); in BuildLine()