Assimp  v3.1.1 (June 2014)
utSortByPType.cpp File Reference

Classes

class  SortByPTypeProcessTest
 

Functions

 TEST_F (SortByPTypeProcessTest, SortByPTypeStep)
 

Variables

static unsigned int num [10][4]
 
static unsigned int result [10]
 

Function Documentation

TEST_F ( SortByPTypeProcessTest  ,
SortByPTypeStep   
)

Variable Documentation

unsigned int num[10][4]
static
Initial value:
=
{
{0,0,0,1000},
{0,0,1000,0},
{0,1000,0,0},
{1000,0,0,0},
{500,500,0,0},
{500,0,500,0},
{0,330,330,340},
{250,250,250,250},
{100,100,100,700},
{0,100,0,900},
}
unsigned int result[10]
static
Initial value:
=
{
aiPrimitiveType_POINT | aiPrimitiveType_LINE,
aiPrimitiveType_POINT | aiPrimitiveType_TRIANGLE,
aiPrimitiveType_TRIANGLE | aiPrimitiveType_LINE | aiPrimitiveType_POLYGON,
aiPrimitiveType_POLYGON | aiPrimitiveType_LINE | aiPrimitiveType_TRIANGLE | aiPrimitiveType_POINT,
aiPrimitiveType_POLYGON | aiPrimitiveType_LINE | aiPrimitiveType_TRIANGLE | aiPrimitiveType_POINT,
aiPrimitiveType_LINE | aiPrimitiveType_POLYGON,
}
A triangular primitive.
Definition: mesh.h:308
A higher-level polygon with more than 3 edges.
Definition: mesh.h:317
A line primitive.
Definition: mesh.h:302
A point primitive.
Definition: mesh.h:295