Make .continueDirection() more private

This commit is contained in:
Florian Festi 2018-12-08 12:46:54 +01:00
parent 39145ce0fd
commit 73050d4969
1 changed files with 3 additions and 3 deletions

View File

@ -610,7 +610,7 @@ class Boxes:
self.ctx.arc_negative(0, self.burn - radius, self.burn - radius, self.ctx.arc_negative(0, self.burn - radius, self.burn - radius,
-0.5 * math.pi, -0.5 * math.pi + rad) -0.5 * math.pi, -0.5 * math.pi + rad)
self.continueDirection(rad) self._continueDirection(rad)
def edge(self, length, tabs=0): def edge(self, length, tabs=0):
""" """
@ -654,7 +654,7 @@ class Boxes:
dx = x3 - x2 dx = x3 - x2
dy = y3 - y2 dy = y3 - y2
rad = math.atan2(dy, dx) rad = math.atan2(dy, dx)
self.continueDirection(rad) self._continueDirection(rad)
def polyline(self, *args): def polyline(self, *args):
""" """
@ -926,7 +926,7 @@ class Boxes:
self.moveTo(r*math.sin(-rad), self.moveTo(r*math.sin(-rad),
-r*(1-math.cos(rad)), angle) -r*(1-math.cos(rad)), angle)
def continueDirection(self, angle=0): def _continueDirection(self, angle=0):
""" """
Set coordinate system to current position (end point) Set coordinate system to current position (end point)