Skip to content

Instantly share code, notes, and snippets.

View ncolyer11's full-sized avatar

ncolyer ncolyer11

View GitHub Profile
@ncolyer11
ncolyer11 / shot_1.py
Last active July 15, 2022 14:03
Shroomlight Farm Manim Rendering Code
from manim import *
class BarCharExam(Scene):
def construct(self):
colors = [BLUE, ORANGE, BLUE, ORANGE, BLUE, ORANGE, BLUE, ORANGE]
values = [18, 10, 97.951, 0.05, 69.3, 1, 27.1125, 0]
yr = [0, 100, 25]
barct = BarChart(values, y_range = yr, bar_colors = colors)