This commit is contained in:
Hannes Janetzek 2013-01-17 12:09:34 +01:00
parent 9705811f7b
commit 928c7e7328

View File

@ -301,7 +301,8 @@ public final class LineLayer extends Layer {
ux = vx + wx;
uy = vy + wy;
a = -wy * ux + wx * uy;
// cross-product
a = wx * uy - wy * ux;
// boolean split = false;
if (a < 0.01f && a > -0.01f) {