mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
62 lines
1.8 KiB
Python
62 lines
1.8 KiB
Python
![]() |
from __future__ import absolute_import
|
||
|
|
||
|
import itertools as it
|
||
|
import numpy as np
|
||
|
|
||
|
from constants import *
|
||
|
|
||
|
import warnings
|
||
|
|
||
|
from animation.animation import Animation
|
||
|
from animation.transform import Transform
|
||
|
from utils.config_ops import digest_config
|
||
|
|
||
|
class Rotating(Animation):
|
||
|
CONFIG = {
|
||
|
"axis" : OUT,
|
||
|
"radians" : 2*np.pi,
|
||
|
"run_time" : 5,
|
||
|
"rate_func" : None,
|
||
|
"in_place" : True,
|
||
|
"about_point" : None,
|
||
|
"about_edge" : None,
|
||
|
}
|
||
|
def update_submobject(self, submobject, starting_submobject, alpha):
|
||
|
submobject.points = np.array(starting_submobject.points)
|
||
|
|
||
|
def update_mobject(self, alpha):
|
||
|
Animation.update_mobject(self, alpha)
|
||
|
about_point = None
|
||
|
if self.about_point is not None:
|
||
|
about_point = self.about_point
|
||
|
elif self.in_place: #This is superseeded
|
||
|
self.about_point = self.mobject.get_center()
|
||
|
self.mobject.rotate(
|
||
|
alpha*self.radians,
|
||
|
axis = self.axis,
|
||
|
about_point = self.about_point,
|
||
|
about_edge = self.about_edge,
|
||
|
)
|
||
|
|
||
|
class Rotate(Transform):
|
||
|
CONFIG = {
|
||
|
"in_place" : False,
|
||
|
"about_point" : None,
|
||
|
}
|
||
|
def __init__(self, mobject, angle = np.pi, axis = OUT, **kwargs):
|
||
|
if "path_arc" not in kwargs:
|
||
|
kwargs["path_arc"] = angle
|
||
|
if "path_arc_axis" not in kwargs:
|
||
|
kwargs["path_arc_axis"] = axis
|
||
|
digest_config(self, kwargs, locals())
|
||
|
target = mobject.copy()
|
||
|
if self.in_place:
|
||
|
self.about_point = mobject.get_center()
|
||
|
target.rotate(
|
||
|
angle,
|
||
|
axis = axis,
|
||
|
about_point = self.about_point,
|
||
|
)
|
||
|
Transform.__init__(self, mobject, target, **kwargs)
|
||
|
|