The Morphology Lexicon
An authoritative glossary of forty-two fundamental concepts in differential geometry, manifold topology, physically based rendering, and kinematics with formal definitions and etymologies.
2-Manifold
Definition: A topological space that locally resembles 2D Euclidean plane ℝ² around every interior point, where every edge is shared by at most two faces.
Euler Characteristic (χ)
Definition: A topological invariant integer χ = V - E + F for polyhedral meshes, equal to 2 - 2g for closed orientable surfaces of genus g.
Catmull-Clark Subdivision
Definition: A recursive subdivision scheme that refines arbitrary polyhedral meshes into smooth quad-dominant limit surfaces with C² continuity almost everywhere.
NURBS
Definition: A mathematical formulation using rational B-spline basis functions over non-uniform knot vectors to represent exact analytic conics and freeform aerodynamic surfaces.
Signed Distance Field (SDF)
Definition: A continuous scalar field f(x) : ℝ³ → ℝ where |f(x)| is the Euclidean distance to the boundary ∂Ω, with sign indicating interior/exterior.
Sphere Tracing
Definition: A raymarching algorithm that advances a ray along its direction by the exact signed distance evaluated at the current position.
Smooth Minimum (smin)
Definition: A continuous quadratic or cubic polynomial approximation of min(a,b) that smoothly blends two scalar distance fields over a radius k.
Quad Flow
Definition: The deliberate arrangement of 4-sided polygon edge loops parallel to the principal curvature directions and dynamic stress axes of a surface.
Edge Loop
Definition: A continuous sequence of edges in a quad mesh where each edge connects to the next across an opposite vertex, forming an uninterrupted ring or boundary path.
Pole Singularity (E-Pole & N-Pole)
Definition: A vertex in a quadrilateral mesh whose valence differs from 4; valence 3 (N-pole) introduces +90° turning, valence 5 (E-pole) introduces -90° turning and branching.
Retopology
Definition: The process of building a clean, lightweight, quad-dominant polygonal mesh over a dense raw 3D scan or multi-million-polygon digital sculpt.
UV Unwrapping
Definition: The continuous piecewise mapping of a 3D polygonal surface mesh onto a 2D planar unit coordinate system [0,1]².
Least Squares Conformal Maps (LSCM)
Definition: A mathematical optimization algorithm for UV unwrapping that minimizes angle distortion (shear) by approximating Cauchy-Riemann equations via least squares.
UDIM (U-Dimension Indexing)
Definition: A texture coordinate tiling system that extends UV space across multiple discrete integer tiles (1001, 1002, etc.) along a 10-wide U-grid.
Texel Density
Definition: The ratio of 2D texture resolution (in pixels) mapped per unit of 3D world space (e.g. 10.24 px/cm or 512 px/meter).
Normal Mapping (Tangent Space)
Definition: An RGB texture encoding perturbed surface unit normal vectors (X→Red, Y→Green, Z→Blue) relative to the local tangent space {T, B, N}.
MikkTSpace
Definition: A deterministic standard for calculating tangent and bitangent vectors on triangle meshes, ensuring 100% mathematical parity between texture bakers and game viewports.
Displacement Mapping
Definition: A technique that modifies the actual geometric positions of surface vertices along their normal vectors based on a scalar height map p' = p + h·n.
Physically Based Rendering (PBR)
Definition: A shading and texturing methodology based on real electromagnetic optics, enforcing strict energy conservation and microfacet reflectance.
Albedo (Base Color)
Definition: The proportion of incident light reflected diffusely in all directions by a surface, completely devoid of directional highlights, baked shadows, or ambient occlusion.
Cook-Torrance BRDF
Definition: A microfacet specular reflectance model evaluating D(h) normal distribution, F(v,h) Fresnel reflectance, and G(l,v,h) geometric shadowing over 4(n·l)(n·v).
GGX Normal Distribution (Trowbridge-Reitz)
Definition: A microfacet distribution function characterized by an extended heavy tail, yielding softer highlight halos and realistic grazing specular spread.
Fresnel Equations & Schlick Approximation
Definition: Electromagnetic formulas governing how the ratio of reflected to refracted light increases dramatically as the angle of incidence approaches 90° grazing.
Subsurface Scattering (BSSRDF)
Definition: Light transport where photons penetrate a translucent boundary, scatter repeatedly internally through cellular matter, and exit at different surface coordinates.
Dual Quaternion Skinning (DQS)
Definition: A non-linear skeletal deformation algorithm that interpolates rigid transformations as unit dual quaternions on SE(3), strictly preserving cross-sectional volume.
Linear Blend Skinning (LBS)
Definition: Deforming mesh vertices via a linear weighted combination of transformed bone matrices: v' = Σ w_j M_j B_j⁻¹ v.
Blendshape / Shape Key
Definition: A target deformation pose defined as a set of additive vertex displacement vectors relative to a neutral base mesh topology: V_final = V_base + Σ w_k ΔV_k.
Inverse Kinematics (IK)
Definition: The mathematical process of computing the required internal joint angles along a skeletal chain to place the end-effector (hand or foot) at a target spatial coordinate.
Forward Kinematics (FK)
Definition: Evaluating the final spatial coordinate and orientation of an end-effector by multiplying transformation matrices down the hierarchical joint chain from root to tip.
FABRIK Algorithm
Definition: An iterative, matrix-free geometric IK solver that projects joint positions along bone line segments in alternating forward and backward sweeps.
Quaternion
Definition: A 4-dimensional hypercomplex number q = w + xi + yj + zk with i² = j² = k² = ijk = -1, representing 3D spatial rotations without coordinate singularities.
Gimbal Lock
Definition: The loss of one degree of rotational freedom when using 3-axis Euler angles (Pitch, Yaw, Roll), occurring when two rotation axes align parallel (e.g. at Pitch = ±90°).
Navier-Stokes Equations
Definition: A system of nonlinear partial differential equations governing the motion of viscous, incompressible fluid substances based on Newton's second law.
FLIP & APIC Solvers
Definition: Hybrid Lagrangian-Eulerian numerical methods that transfer velocities between moving particles and background grid cells while preserving angular momentum.
Extended Position Based Dynamics (XPBD)
Definition: A physics simulation framework that projects particle positions directly to satisfy geometric constraints using elastic compliance independent of time step size.
Bounding Volume Hierarchy (BVH)
Definition: A tree structure where geometric primitives are enclosed within nested bounding volumes (typically AABBs), reducing ray-triangle intersection tests from O(N) to O(log N).
Monte Carlo Path Tracing
Definition: A stochastic rendering technique that estimates Kajiya's Rendering Equation by tracing random light bounce paths backwards from the camera to light sources.
The Rendering Equation
Definition: An integral equation expressing outgoing light as the sum of emitted radiance and the hemispherical integral of incoming light multiplied by the surface BRDF and cosine foreshortening.
Multiple Importance Sampling (MIS)
Definition: A variance reduction technique that combines multiple probability density functions (e.g. sampling the light source and sampling the material BSDF) via the Power Heuristic.
Nanite Virtualized Geometry
Definition: A geometry system that partitions meshes into hierarchical clusters of 128 triangles, dynamically streaming and rasterizing micro-triangles at sub-pixel resolution.
3D Gaussian Splatting
Definition: A volumetric scene representation using parameterized anisotropic 3D Gaussians (position, 3D covariance, opacity, spherical harmonics) rendered via fast tile sorting.
Eikonal Equation
Definition: A non-linear first-order partial differential equation ||∇f(x)|| = 1 that governs wave front propagation and characterizes true Signed Distance Fields.