wassimj / topologicpy

The python bindings for topologic
Other
91 stars 26 forks source link

Modified the Class of Edge's IsParallel function #58

Closed gaoxipeng closed 5 months ago

gaoxipeng commented 5 months ago

Dear @wassimj : Edge.IsParallel in line 792: x3, y3, z3 = Vertex.Coordinates(Edge.StartVertex(edgeA), mantissa=mantissa) x4, y4, z4 = Vertex.Coordinates(Edge.EndVertex(edgeA), mantissa=mantissa) should be changed: x3, y3, z3 = Vertex.Coordinates(Edge.StartVertex(edgeB), mantissa=mantissa) x4, y4, z4 = Vertex.Coordinates(Edge.EndVertex(edgeB), mantissa=mantissa)