Skip to content

Instantly share code, notes, and snippets.

View pathakcodes's full-sized avatar
🚰
Drinking Water

Shivam Kumar Pathak pathakcodes

🚰
Drinking Water
View GitHub Profile
@jaddoescad
jaddoescad / set_background.py
Last active April 20, 2021 19:24
change background color in manim
from big_ol_pile_of_manim_imports import *
def set_background(self):
background = Rectangle(
width = FRAME_WIDTH,
height = FRAME_HEIGHT,
stroke_width = 0,
fill_color = "#3E746F",
fill_opacity = 1)
self.add(background)