GetConceptualFaceEx
Syntax
// // Strong typing definition // ConceptualFace GetConceptualFaceEx( OwlInstance owlInstance, int64_t index, int64_t * startIndexTriangles, int64_t * noIndicesTriangles, int64_t * startIndexLines, int64_t * noIndicesLines, int64_t * startIndexPoints, int64_t * noIndicesPoints, int64_t * startIndexFacePolygons, int64_t * noIndicesFacePolygons, int64_t * startIndexConceptualFacePolygons, int64_t * noIndicesConceptualFacePolygons ); static inline ConceptualFace GetConceptualFaceEx( OwlInstance owlInstance, int64_t index, int64_t * startIndexTriangles, int64_t * noIndicesTriangles, int64_t * startIndexLines, int64_t * noIndicesLines, int64_t * startIndexPoints, int64_t * noIndicesPoints ) { return GetConceptualFaceEx( owlInstance, index, startIndexTriangles, noIndicesTriangles, startIndexLines, noIndicesLines, startIndexPoints, noIndicesPoints, nullptr, // startIndexFacePolygons nullptr, // noIndicesFacePolygons nullptr, // startIndexConceptualFacePolygons nullptr // noIndicesConceptualFacePolygons ); } static inline ConceptualFace GetConceptualFaceEx( OwlInstance owlInstance, int64_t index ) { return GetConceptualFaceEx( owlInstance, index, nullptr, // startIndexTriangles nullptr, // noIndicesTriangles nullptr, // startIndexLines nullptr, // noIndicesLines nullptr, // startIndexPoints nullptr // noIndicesPoints ); } // // Weak typing definition // int64_t __declspec(dllexport) __stdcall GetConceptualFaceEx( int64_t owlInstance, int64_t index, int64_t * startIndexTriangles, int64_t * noIndicesTriangles, int64_t * startIndexLines, int64_t * noIndicesLines, int64_t * startIndexPoints, int64_t * noIndicesPoints, int64_t * startIndexFacePolygons, int64_t * noIndicesFacePolygons, int64_t * startIndexConceptualFacePolygons, int64_t * noIndicesConceptualFacePolygons ); static inline int64_t GetConceptualFaceEx( int64_t owlInstance, int64_t index, int64_t * startIndexTriangles, int64_t * noIndicesTriangles, int64_t * startIndexLines, int64_t * noIndicesLines, int64_t * startIndexPoints, int64_t * noIndicesPoints ) { return GetConceptualFaceEx( owlInstance, index, startIndexTriangles, noIndicesTriangles, startIndexLines, noIndicesLines, startIndexPoints, noIndicesPoints, nullptr, // startIndexFacePolygons nullptr, // noIndicesFacePolygons nullptr, // startIndexConceptualFacePolygons nullptr // noIndicesConceptualFacePolygons ); } static inline int64_t GetConceptualFaceEx( int64_t owlInstance, int64_t index ) { return GetConceptualFaceEx( owlInstance, index, nullptr, // startIndexTriangles nullptr, // noIndicesTriangles nullptr, // startIndexLines nullptr, // noIndicesLines nullptr, // startIndexPoints nullptr // noIndicesPoints ); }