Skip to content

Commit e29a542

Browse files
committed
Fix return types in Tesselator.i
1 parent 537b4e5 commit e29a542

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Tesselator/Tesselator.i

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,9 @@ class ShapeTesselator {
5555
void GetNormal(int inorm, float& x, float& y, float& z);
5656
void GetTriangleIndex(int triangleIdx, int& v1, int& v2, int& v3);
5757
void GetEdgeVertex(int iEdge, int ivert, float& x, float& y, float& z);
58-
float GetDeviation();
59-
float* VerticesList();
58+
double GetDeviation();
59+
double* VerticesList();
60+
double* NormalsList();
6061
int ObjGetTriangleCount();
6162
int ObjGetInvalidTriangleCount();
6263
int ObjGetVertexCount();

0 commit comments

Comments
 (0)