Home
last modified time | relevance | path

Searched refs:xIndexedFaceSetNode (Results 1 – 3 of 3) sorted by relevance

/dports/cad/repsnapper/repsnapper-2.5a4/libraries/amf/amftools-code/include/
H A DX3D_File.h51 class xIndexedFaceSetNode
54 xIndexedFaceSetNode(void){Clear();} in xIndexedFaceSetNode() function
55 ~xIndexedFaceSetNode(void){}; in ~xIndexedFaceSetNode()
56 xIndexedFaceSetNode& operator=(const xIndexedFaceSetNode& x); //overload equals
57 xIndexedFaceSetNode(const xIndexedFaceSetNode& x) {*this = x;} in xIndexedFaceSetNode() function
108 xIndexedFaceSetNode xIndexedFaceSet;
/dports/cad/repsnapper/repsnapper-2.5a4/libraries/amf/amftools-code/src/
H A DX3D_File.cpp204 xIndexedFaceSetNode& xIndexedFaceSetNode::operator=(const xIndexedFaceSetNode& x) in operator =()
224 void xIndexedFaceSetNode::Clear() in Clear()
245 X3dLoadResult xIndexedFaceSetNode::ReadXML(CXmlStreamRead* pXML, std::string* pRetMessage) in ReadXML()
282 bool xIndexedFaceSetNode::FillDerivedInfo() //fills in these calculated other parameters for easy a… in FillDerivedInfo()
306 int xIndexedFaceSetNode::GetNumTriangles() //returns 2x number of quads if x3d has quads... in GetNumTriangles()
313 int xIndexedFaceSetNode::GetCoordInd(int TriNum, int VertNum) //VertNum is 0, 1, or 2 (copy to GetT… in GetCoordInd()
324 double xIndexedFaceSetNode::GetColorFace(int TriNum, ColChan Chan) //triangle color (make sure Colo… in GetColorFace()
338 double xIndexedFaceSetNode::GetColorVert(int CoordNum, ColChan Chan) //vertex color (make sure Colo… in GetColorVert()
351 double xIndexedFaceSetNode::GetColorVert(int TriNum, int VertNum, ColChan Chan) //triangle color (m… in GetColorVert()
363 int xIndexedFaceSetNode::GetTexCoordInd(int TriNum, int VertNum) //copied fromG etCoordInd () in GetTexCoordInd()
H A DAMF_File.cpp530 xIndexedFaceSetNode* pFaceSet = &iS->xIndexedFaceSet; in ImportX3d()