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:
committed by
Yorik van Havre
parent
affdb168b7
commit
fadbd5e424
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user