mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Merge pull request #467 from indiejames/Fix-Ellipse-height
Fix height setting in Ellipse initialization
This commit is contained in:
commit
3aca85e47d
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