delete unused line
parent
73c887a8a3
commit
d8a6e5e509
|
@ -189,7 +189,6 @@ def bez2poly(bez, numpy_ordering=True, return_poly1d=False):
|
||||||
def transform_segments_together(path, transformation):
|
def transform_segments_together(path, transformation):
|
||||||
"""Makes sure that, if joints were continuous, they're kept that way."""
|
"""Makes sure that, if joints were continuous, they're kept that way."""
|
||||||
transformed_segs = [transformation(seg) for seg in path]
|
transformed_segs = [transformation(seg) for seg in path]
|
||||||
joint_was_continuous = [sa.end == sb.start for sa, sb in path.joints()]
|
|
||||||
|
|
||||||
for i, (sa, sb) in enumerate(path.joints()):
|
for i, (sa, sb) in enumerate(path.joints()):
|
||||||
if sa.end == sb.start:
|
if sa.end == sb.start:
|
||||||
|
|
Loading…
Reference in New Issue