Skip to content

Commit

Permalink
Fix Tessellate method that didn't pass the callback.
Browse files Browse the repository at this point in the history
  • Loading branch information
speps committed Mar 24, 2018
1 parent 3f06e93 commit da3e9b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LibTessDotNet/Sources/Tess.cs
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ public void Tessellate(WindingRule windingRule, ElementType elementType, int pol

public void Tessellate(WindingRule windingRule, ElementType elementType, int polySize, CombineCallback combineCallback)
{
Tessellate(windingRule, elementType, polySize, null, Vec3.Zero);
Tessellate(windingRule, elementType, polySize, combineCallback, Vec3.Zero);
}

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

0 comments on commit da3e9b0

Please sign in to comment.