Project a 3D point orthographically by keeping x and y and dropping z.
Example
Drop z to project a 3D point orthographically. Orthographic projection flattens a scene onto a plane by discarding depth, keeping the other coordinates unchanged so parallel lines stay parallel. Unlike perspective, distant objects are not shrunk, which makes this projection useful when true sizes and straight relationships must be preserved.
highlighted = computed this step
Step 1 — 3D point
Set up the exact input values.
P(2, 3, 4)
Step 2 — Drop z
Compute the highlighted value.
dropped z4
Step 3 — Screen point
Compute the highlighted value.
P prime(2, 3)
3d-point-and-orthographicOrthographic projection is the simplest 3D-to-2D projection: z does not change the screen location.