Support inverse orientation of wires

This commit is contained in:
adam-urbanczyk
2021-05-14 23:50:03 +02:00
parent 25fa220545
commit 81cc34d258

View File

@ -534,7 +534,7 @@ class AreaNthSelector(_NthSelector):
return obj.Area()
elif isinstance(obj, Wire):
try:
return Face.makeFromWires(obj).Area()
return abs(Face.makeFromWires(obj).Area())
except Exception as ex:
raise ValueError(
f"Can not compute area of the Wire: {ex}. AreaNthSelector supports only closed planar Wires."