mirror of
https://github.com/3b1b/manim.git
synced 2026-04-26 03:00:23 -04:00
Fixed negative decimal issue
This commit is contained in:
@@ -105,9 +105,9 @@ class DecimalNumber(VMobject):
|
||||
full_config.update(self.initial_config)
|
||||
full_config.update(config)
|
||||
new_decimal = DecimalNumber(number, **full_config)
|
||||
# new_decimal.match_height(self)
|
||||
# Make sure last digit has constant height
|
||||
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.match_style(self)
|
||||
|
||||
Reference in New Issue
Block a user