Skip to content

Commit da3e9b0

Browse files
committed
Fix Tessellate method that didn't pass the callback.
1 parent 3f06e93 commit da3e9b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LibTessDotNet/Sources/Tess.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ public void Tessellate(WindingRule windingRule, ElementType elementType, int pol
705705

706706
public void Tessellate(WindingRule windingRule, ElementType elementType, int polySize, CombineCallback combineCallback)
707707
{
708-
Tessellate(windingRule, elementType, polySize, null, Vec3.Zero);
708+
Tessellate(windingRule, elementType, polySize, combineCallback, Vec3.Zero);
709709
}
710710

711711
public void Tessellate(WindingRule windingRule, ElementType elementType, int polySize, CombineCallback combineCallback, Vec3 normal)

0 commit comments

Comments
 (0)