Compare commits
No commits in common. "master" and "release" have entirely different histories.
@ -123,7 +123,7 @@ class Circle(Shape):
|
|||||||
return self
|
return self
|
||||||
|
|
||||||
def mirror(self, axis: int = 0) -> 'Circle': # noqa: ARG002 (axis unused)
|
def mirror(self, axis: int = 0) -> 'Circle': # noqa: ARG002 (axis unused)
|
||||||
self.offset[axis - 1] *= -1
|
self.offset *= -1
|
||||||
return self
|
return self
|
||||||
|
|
||||||
def scale_by(self, c: float) -> 'Circle':
|
def scale_by(self, c: float) -> 'Circle':
|
||||||
|
Loading…
x
Reference in New Issue
Block a user