[Draft] Small bugfix in bezcurve editing
Solved bug when clicking on empty space while editing continuity.
This commit is contained in:
committed by
Yorik van Havre
parent
9aac2df1a7
commit
ec3a6ba0d9
@@ -800,9 +800,10 @@ class Edit():
|
||||
index,self.obj.ViewObject.LineColor,\
|
||||
marker=marker))
|
||||
|
||||
def smoothBezPoint(self,point, style='Symmetric'):
|
||||
def smoothBezPoint(self, point, style='Symmetric'):
|
||||
"called when changing the continuity of a knot"
|
||||
style2cont = {'Sharp':0,'Tangent':1,'Symmetric':2}
|
||||
if point == None: return
|
||||
if not (Draft.getType(self.obj) == "BezCurve"):return
|
||||
pts = self.obj.Points
|
||||
deg = self.obj.Degree
|
||||
|
||||
Reference in New Issue
Block a user