Skip to content

Latest commit

 

History

History
87 lines (49 loc) · 1.52 KB

manim_6.md

File metadata and controls

87 lines (49 loc) · 1.52 KB

...menustart

...menuend

6 2D and 3D graphs

CONFIG

Camera Config

See manimlib/camera/camera.py

CONFIG = {
    "camera_config":{"background_color":RED},
}

GraphSceen

TODO

Path

source code

doc

7 Add sounds, svgs and Images

create folder assets , create 3 sub-folders

  • raster_images

    img = SVGMobject("finger")
    self.play(write(img))
  • svg_images

    svg = SVGMobject("finger")
    # self.play(write(svg))
    self.play( DrawBorderThenFill(svg, rate_func=linear) )
  • sounds

    self.add_sound( "click" )
    • the sound file could be click.wav or click.mp3