mirror of
https://github.com/3b1b/manim.git
synced 2025-11-14 22:57:44 +00:00
Fix height setting in Ellipse initialization
This commit is contained in:
parent
03e832af45
commit
741ed593b2
1 changed files with 1 additions and 1 deletions
|
|
@ -321,7 +321,7 @@ class Ellipse(Circle):
|
|||
def __init__(self, **kwargs):
|
||||
Circle.__init__(self, **kwargs)
|
||||
self.set_width(self.width, stretch=True)
|
||||
self.set_height(self.width, stretch=True)
|
||||
self.set_height(self.height, stretch=True)
|
||||
|
||||
|
||||
class AnnularSector(Arc):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue