Bug fixes:

fixes reparenting bug when dressup is deleted
Engrave wasn't using final depth value
Dragknife Dressup not correctly calculating spin direction or curve intersection
Per Yorik, fix crash if PartGui hasn't been loaded
Allow selection of bottom face for profiling
Bug # 0002615
This commit is contained in:
sliptonic
2016-08-02 14:38:42 -05:00
committed by Yorik van Havre
parent affdb168b7
commit fadbd5e424
7 changed files with 77 additions and 59 deletions

View File

@@ -303,7 +303,7 @@ print "y - " + str(point.y)
# we only consider the outer wire if this is a Face
# Horizontal and vertical faces are handled differently
shape = getattr(b[0].Shape, sub)
if numpy.isclose(shape.normalAt(0, 0).z, 1): # horizontal face
if numpy.isclose(abs(shape.normalAt(0, 0).z), 1): # horizontal face
hfaces.append(shape)
elif numpy.isclose(shape.normalAt(0, 0).z, 0): # vertical face