ncannasse 9 년 전
부모
커밋
c3e35d8896
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      hxd/clipper/Clipper.hx

+ 3 - 3
hxd/clipper/Clipper.hx

@@ -2264,19 +2264,19 @@ class Clipper extends ClipperBase {
 	private function ProcessIntersections(topY:Int) : Bool
 	{
 		if( m_ActiveEdges == null ) return true;
-        try {
+        //try {
 			BuildIntersectList(topY);
 			if ( m_IntersectList.length == 0) return true;
 			if (m_IntersectList.length == 1 || FixupIntersectionOrder())
 				ProcessIntersectList();
 			else
 				return false;
-        }
+        /*}
         catch (e : Dynamic) {
 			m_SortedEdges = null;
 			m_IntersectList = [];
 			throw "ProcessIntersections error";
-        }
+        }*/
         m_SortedEdges = null;
         return true;
 	}