NOTE ✦ Mon Jun 08 2026 00:00:00 GMT+0000 (Coordinated Universal Time)
Notes on projective geometry
A short refresher. Headings below become the TOC automatically.
Vanishing points
Inline math like works mid-sentence. Parallel lines in the world meet at a single point under perspective projection.
Two world-parallel lines share a vanishing point; their image
directions are no longer parallel.
Rotations
A 2-D rotation is orthogonal, so its transpose is its inverse:
rotation
A note on code
import numpy as np
def rotate(t):
c, s = np.cos(t), np.sin(t)
return np.array([[c, -s], [s, c]])
Recap
- Inner product → alignment; its root → length.
- Vanishing points come from projective geometry, not perspective tricks.