Lines Matching refs:pVecArray
697 …angle( const math::VEC2& pt1, const math::VEC2& pt2, const math::VEC2& pt3, math::VEC2 *pVecArray ) in BuildTriangle() argument
699 NW_NULL_ASSERT( pVecArray ); in BuildTriangle()
701 pVecArray[ 0 ] = pt1; in BuildTriangle()
702 pVecArray[ 1 ] = pt2; in BuildTriangle()
703 pVecArray[ 2 ] = pt3; in BuildTriangle()
715 math::VEC2 *pVecArray ) in BuildRectangle() argument
717 NW_NULL_ASSERT( pVecArray ); in BuildRectangle()
720 count += this->BuildTriangle( pt1, pt2, pt3, &pVecArray[count] ); in BuildRectangle()
721 count += this->BuildTriangle( pt1, pt3, pt4, &pVecArray[count] ); in BuildRectangle()
728 …hicsDrawing::BuildRectangle( const math::VEC2& pos, const math::VEC2& size, math::VEC2 *pVecArray ) in BuildRectangle() argument
730 NW_NULL_ASSERT( pVecArray ); in BuildRectangle()
738 pVecArray ); in BuildRectangle()
745 …ng::BuildLine( const math::VEC2& pt1, const math::VEC2& pt2, f32 lineWidth, math::VEC2 *pVecArray ) in BuildLine() argument
748 NW_NULL_ASSERT( pVecArray ); in BuildLine()
758 …s->BuildRectangle( pt1 - ortho / 2, pt1 + ortho / 2, pt2 + ortho / 2, pt2 - ortho / 2, pVecArray ); in BuildLine()