The Manim Academy monogram, built as a single letterform silhouette extruded into a solid: a white face over a gray body, with a keyline so the folds read as corners. The scene stacks flat polygons rather than using a 3D camera, so it stays crisp at any resolution. A companion scene wraps the same solid in a surface grid, and another spins the face around the body on a loop.
manim/m_logo.py
"""A solid 3D "M" logo: one letterform silhouette extruded down and to the
left, white face over a gray body.
Render:
# fast square draft, black & white
manim -s -ql -r 480,480 manim/m_logo.py MLogo
# the same letter with a grid wrapped over the solid
manim -s -ql -r 480,480 manim/m_logo.py MLogoMesh
# final quality
manim -s -qh -r 1600,1600 manim/m_logo.py MLogo
"""
import numpy as np
from manim import *
The full Manim source and the rendered video come with a plan.