mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
Tiny changes
This commit is contained in:
parent
c9ff83920c
commit
5e25ecd33c
3 changed files with 3 additions and 10 deletions
|
@ -48,7 +48,7 @@ class Transform(Animation):
|
|||
self.path_arc,
|
||||
self.path_arc_axis,
|
||||
)
|
||||
|
||||
|
||||
def get_all_mobjects(self):
|
||||
return self.mobject, self.starting_mobject, self.target_mobject
|
||||
|
||||
|
|
|
@ -10,10 +10,6 @@ from helpers import *
|
|||
from mobject import Mobject, PMobject, VMobject, \
|
||||
ImageMobject, Group, BackgroundColoredVMobject
|
||||
|
||||
# Set a @profile decorator over any method whose
|
||||
# performance you'd like to analyze
|
||||
from profilehooks import profile
|
||||
|
||||
class Camera(object):
|
||||
CONFIG = {
|
||||
"background_image" : None,
|
||||
|
@ -179,7 +175,6 @@ class Camera(object):
|
|||
def capture_mobject(self, mobject, **kwargs):
|
||||
return self.capture_mobjects([mobject], **kwargs)
|
||||
|
||||
@profile
|
||||
def capture_mobjects(self, mobjects, **kwargs):
|
||||
self.reset_aggdraw_canvas()
|
||||
mobjects = self.get_mobjects_to_display(mobjects, **kwargs)
|
||||
|
@ -256,7 +251,7 @@ class Camera(object):
|
|||
fill_rgb = self.get_fill_rgb(vmobject)
|
||||
fill_hex = rgb_to_hex(fill_rgb)
|
||||
fill = aggdraw.Brush(fill_hex, fill_opacity)
|
||||
|
||||
|
||||
return (pen, fill)
|
||||
|
||||
def color_to_hex_l(self, color):
|
||||
|
@ -280,7 +275,7 @@ class Camera(object):
|
|||
continue
|
||||
aligned_points = self.align_points_to_camera(points)
|
||||
coords = self.points_to_pixel_coords(aligned_points)
|
||||
coord_strings = coords.flatten().astype("string")
|
||||
coord_strings = coords.flatten().astype(str)
|
||||
#Start new path string with M
|
||||
coord_strings[0] = "M" + coord_strings[0]
|
||||
#The C at the start of every 6th number communicates
|
||||
|
|
|
@ -136,8 +136,6 @@ class NumberLine(VMobject):
|
|||
self.tip = tip
|
||||
self.add(tip)
|
||||
|
||||
|
||||
|
||||
class UnitInterval(NumberLine):
|
||||
CONFIG = {
|
||||
"x_min" : 0,
|
||||
|
|
Loading…
Add table
Reference in a new issue