From 022549340463e7255b8c0fa72a0f315088c81d13 Mon Sep 17 00:00:00 2001 From: Val Erastov Date: Mon, 16 Jan 2017 02:05:47 -0800 Subject: [PATCH] fix bug --- web/app/brep/topo/loop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/brep/topo/loop.js b/web/app/brep/topo/loop.js index b482a19f..4fe2e3e2 100644 --- a/web/app/brep/topo/loop.js +++ b/web/app/brep/topo/loop.js @@ -11,7 +11,7 @@ export class Loop extends TopoObject { } isCCW(surface) { - Loop.isPolygonCCWOnSurface(this.asPolygon(), surface); + return Loop.isPolygonCCWOnSurface(this.asPolygon(), surface); } asPolygon() {