Skip to content

Commit

Permalink
[Core] [FL] Cubicbezier [Update] 0.28:
Browse files Browse the repository at this point in the history
- Fixed angle units for aling_to (from degrees to radians)!
  • Loading branch information
kateliev committed Jan 7, 2024
1 parent 9501dad commit e0f896c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib/typerig/core/objects/cubicbezier.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from typerig.core.objects.line import Line

# - Init -------------------------------
__version__ = '0.27.9'
__version__ = '0.28.0'

# - Classes -----------------------------
class CubicBezier(object):
Expand Down Expand Up @@ -110,7 +110,7 @@ def height(self):
def align_to(self, other_line):
tx = other_line.p0.x
ty = other_line.p0.y
angle = -other_line.angle
angle = -other_line.angler
result = []

for p in self.points:
Expand Down

0 comments on commit e0f896c

Please sign in to comment.