Home
last modified time | relevance | path

Searched refs:pVecArray (Results 1 – 2 of 2) sorted by relevance

/NW4C-2.0.3/sources/libraries/demo/
Ddemo_GraphicsDrawing.cpp699 …angle( const math::VEC2& pt1, const math::VEC2& pt2, const math::VEC2& pt3, math::VEC2 *pVecArray ) in BuildTriangle() argument
701 NW_NULL_ASSERT( pVecArray ); in BuildTriangle()
703 pVecArray[ 0 ] = pt1; in BuildTriangle()
704 pVecArray[ 1 ] = pt2; in BuildTriangle()
705 pVecArray[ 2 ] = pt3; in BuildTriangle()
717 math::VEC2 *pVecArray ) in BuildRectangle() argument
719 NW_NULL_ASSERT( pVecArray ); in BuildRectangle()
722 count += this->BuildTriangle( pt1, pt2, pt3, &pVecArray[count] ); in BuildRectangle()
723 count += this->BuildTriangle( pt1, pt3, pt4, &pVecArray[count] ); in BuildRectangle()
730 …hicsDrawing::BuildRectangle( const math::VEC2& pos, const math::VEC2& size, math::VEC2 *pVecArray ) in BuildRectangle() argument
[all …]
/NW4C-2.0.3/include/nw/demo/
Ddemo_GraphicsDrawing.h365 …ngle( const math::VEC2& pt1, const math::VEC2& pt2, const math::VEC2& pt3, math::VEC2 *pVecArray );
374 s32 BuildRectangle( const math::VEC2& pos, const math::VEC2& size, math::VEC2 *pVecArray );
393 math::VEC2 *pVecArray );
403 …32 BuildLine( const math::VEC2& pt1, const math::VEC2& pt2, f32 lineWidth, math::VEC2 *pVecArray );