mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Fixed negative decimal issue
This commit is contained in:
parent
4d899b6c97
commit
fc7d67e25f
1 changed files with 2 additions and 2 deletions
|
@ -105,9 +105,9 @@ class DecimalNumber(VMobject):
|
||||||
full_config.update(self.initial_config)
|
full_config.update(self.initial_config)
|
||||||
full_config.update(config)
|
full_config.update(config)
|
||||||
new_decimal = DecimalNumber(number, **full_config)
|
new_decimal = DecimalNumber(number, **full_config)
|
||||||
# new_decimal.match_height(self)
|
# Make sure last digit has constant height
|
||||||
new_decimal.scale(
|
new_decimal.scale(
|
||||||
self[0].get_height() / new_decimal[0].get_height()
|
self[-1].get_height() / new_decimal[-1].get_height()
|
||||||
)
|
)
|
||||||
new_decimal.move_to(self, self.edge_to_fix)
|
new_decimal.move_to(self, self.edge_to_fix)
|
||||||
new_decimal.match_style(self)
|
new_decimal.match_style(self)
|
||||||
|
|
Loading…
Add table
Reference in a new issue