mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
137 lines
3.3 KiB
Python
137 lines
3.3 KiB
Python
import random
|
|
|
|
from colour import Color
|
|
import numpy as np
|
|
|
|
from manimlib.constants import WHITE
|
|
from manimlib.constants import COLORMAP_3B1B
|
|
from manimlib.utils.bezier import interpolate
|
|
from manimlib.utils.iterables import resize_with_interpolation
|
|
from manimlib.utils.simple_functions import clip_in_place
|
|
from manimlib.utils.space_ops import normalize
|
|
|
|
|
|
def color_to_rgb(color):
|
|
if isinstance(color, str):
|
|
return hex_to_rgb(color)
|
|
elif isinstance(color, Color):
|
|
return np.array(color.get_rgb())
|
|
else:
|
|
raise Exception("Invalid color type")
|
|
|
|
|
|
def color_to_rgba(color, alpha=1):
|
|
return np.array([*color_to_rgb(color), alpha])
|
|
|
|
|
|
def rgb_to_color(rgb):
|
|
try:
|
|
return Color(rgb=rgb)
|
|
except ValueError:
|
|
return Color(WHITE)
|
|
|
|
|
|
def rgba_to_color(rgba):
|
|
return rgb_to_color(rgba[:3])
|
|
|
|
|
|
def rgb_to_hex(rgb):
|
|
return "#" + "".join(
|
|
hex(int_x // 16)[2] + hex(int_x % 16)[2]
|
|
for x in rgb
|
|
for int_x in [int(255 * x)]
|
|
)
|
|
|
|
|
|
def hex_to_rgb(hex_code):
|
|
hex_part = hex_code[1:]
|
|
if len(hex_part) == 3:
|
|
hex_part = "".join([2 * c for c in hex_part])
|
|
return np.array([
|
|
int(hex_part[i:i + 2], 16) / 255
|
|
for i in range(0, 6, 2)
|
|
])
|
|
|
|
|
|
def invert_color(color):
|
|
return rgb_to_color(1.0 - color_to_rgb(color))
|
|
|
|
|
|
def color_to_int_rgb(color):
|
|
return (255 * color_to_rgb(color)).astype('uint8')
|
|
|
|
|
|
def color_to_int_rgba(color, opacity=1.0):
|
|
alpha = int(255 * opacity)
|
|
return np.array([*color_to_int_rgb(color), alpha])
|
|
|
|
|
|
def color_gradient(reference_colors, length_of_output):
|
|
if length_of_output == 0:
|
|
return reference_colors[0]
|
|
rgbs = list(map(color_to_rgb, reference_colors))
|
|
alphas = np.linspace(0, (len(rgbs) - 1), length_of_output)
|
|
floors = alphas.astype('int')
|
|
alphas_mod1 = alphas % 1
|
|
# End edge case
|
|
alphas_mod1[-1] = 1
|
|
floors[-1] = len(rgbs) - 2
|
|
return [
|
|
rgb_to_color(interpolate(rgbs[i], rgbs[i + 1], alpha))
|
|
for i, alpha in zip(floors, alphas_mod1)
|
|
]
|
|
|
|
|
|
def interpolate_color(color1, color2, alpha):
|
|
rgb = interpolate(color_to_rgb(color1), color_to_rgb(color2), alpha)
|
|
return rgb_to_color(rgb)
|
|
|
|
|
|
def average_color(*colors):
|
|
rgbs = np.array(list(map(color_to_rgb, colors)))
|
|
return rgb_to_color(rgbs.mean(0))
|
|
|
|
|
|
def random_bright_color():
|
|
color = random_color()
|
|
curr_rgb = color_to_rgb(color)
|
|
new_rgb = interpolate(
|
|
curr_rgb, np.ones(len(curr_rgb)), 0.5
|
|
)
|
|
return Color(rgb=new_rgb)
|
|
|
|
|
|
def random_color():
|
|
return Color(rgb=(random.random() for i in range(3)))
|
|
|
|
|
|
def get_shaded_rgb(rgb, point, unit_normal_vect, light_source):
|
|
to_sun = normalize(light_source - point)
|
|
factor = 0.5 * np.dot(unit_normal_vect, to_sun)**3
|
|
if factor < 0:
|
|
factor *= 0.5
|
|
result = rgb + factor
|
|
clip_in_place(rgb + factor, 0, 1)
|
|
return result
|
|
|
|
|
|
def get_colormap_list(map_name="viridis", n_colors=9):
|
|
"""
|
|
Options for map_name:
|
|
3b1b_colormap
|
|
magma
|
|
inferno
|
|
plasma
|
|
viridis
|
|
cividis
|
|
twilight
|
|
twilight_shifted
|
|
turbo
|
|
"""
|
|
from matplotlib.cm import get_cmap
|
|
|
|
if map_name == "3b1b_colormap":
|
|
rgbs = [color_to_rgb(color) for color in COLORMAP_3B1B]
|
|
else:
|
|
rgbs = get_cmap(map_name).colors # Make more general?
|
|
return resize_with_interpolation(np.array(rgbs), n_colors)
|