getConceptualFaceEx
Syntax
public const string enginedll = @"engine.dll"; [DllImport(enginedll, EntryPoint = "getConceptualFaceEx")] public static extern Int64 x86_getConceptualFaceEx(Int32 instance, Int32 index, out Int32 startIndexTriangles, out Int32 noIndicesTriangles, out Int32 startIndexLines, out Int32 noIndicesLines, out Int32 startIndexPoints, out Int32 noIndicesPoints, out Int32 startIndexFacePolygons, out Int32 noIndicesFacePolygons, out Int32 startIndexConceptualFacePolygons, out Int32 noIndicesConceptualFacePolygons); [DllImport(enginedll, EntryPoint = "getConceptualFaceEx")] public static extern Int64 x64_getConceptualFaceEx(Int64 instance, Int64 index, out Int64 startIndexTriangles, out Int64 noIndicesTriangles, out Int64 startIndexLines, out Int64 noIndicesLines, out Int64 startIndexPoints, out Int64 noIndicesPoints, out Int64 startIndexFacePolygons, out Int64 noIndicesFacePolygons, out Int64 startIndexConceptualFacePolygons, out Int64 noIndicesConceptualFacePolygons); public static Int64 getConceptualFaceEx(Int64 instance, Int64 index, out Int64 startIndexTriangles, out Int64 noIndicesTriangles, out Int64 startIndexLines, out Int64 noIndicesLines, out Int64 startIndexPoints, out Int64 noIndicesPoints, out Int64 startIndexFacePolygons, out Int64 noIndicesFacePolygons, out Int64 startIndexConceptualFacePolygons, out Int64 noIndicesConceptualFacePolygons) { if (IntPtr.Size == 4) { var _result = x86_getConceptualFaceEx((Int32)instance, (Int32)index, out Int32 _startIndexTriangles, out Int32 _noIndicesTriangles, out Int32 _startIndexLines, out Int32 _noIndicesLines, out Int32 _startIndexPoints, out Int32 _noIndicesPoints, out Int32 _startIndexFacePolygons, out Int32 _noIndicesFacePolygons, out Int32 _startIndexConceptualFacePolygons, out Int32 _noIndicesConceptualFacePolygons); startIndexTriangles = _startIndexTriangles; noIndicesTriangles = _noIndicesTriangles; startIndexLines = _startIndexLines; noIndicesLines = _noIndicesLines; startIndexPoints = _startIndexPoints; noIndicesPoints = _noIndicesPoints; startIndexFacePolygons = _startIndexFacePolygons; noIndicesFacePolygons = _noIndicesFacePolygons; startIndexConceptualFacePolygons = _startIndexConceptualFacePolygons; noIndicesConceptualFacePolygons = _noIndicesConceptualFacePolygons; return _result; } else { return x64_getConceptualFaceEx(instance, index, out startIndexTriangles, out noIndicesTriangles, out startIndexLines, out noIndicesLines, out startIndexPoints, out noIndicesPoints, out startIndexFacePolygons, out noIndicesFacePolygons, out startIndexConceptualFacePolygons, out noIndicesConceptualFacePolygons); } }