[05-1-B]Dimensional methods: get_width/height/top, set_width/height
get_width manimlib.mobject.mobject.Mobject.get_width(self) Gets the object's width, that is, the length in the x-axis direction. In Manim, the x-axis direction is between [-7.1, 7.1]. Therefore, the value of get_width is between [0,14.2] Returns: object's width value # Usage w = obj.get_width() set_width manimlib.mobject.mobject.Mobject.set_width(self, width, stretch=False, **kwargs) Change the ..