The Logic of Space
Introductionβ
This short guide covers fundamental 3D concepts. You don't strictly need them to start using Blender, but understanding them might deepen your intuition about what you're actually doing when you are working in Blender and prepare you for more advanced topics like, for example, geometry nodes and other applications of procedural modeling. We'll explore coordinate systems, axes, and spatial relationships in an accessible way, focusing on building understanding rather than memorization.
Key Featuresβ
Resources
Foundational geometry concepts for visual investigation.
Links
External readings and references on coordinate systems.
Videos
Curated video walkthroughs on spatial reasoning and axes.
Geometry: The Language of Blenderβ
Blender is primarily a tool for working with geometry. The word itself comes from Greek: geo (earth) and metron (measurement), literally "earth measurement." In practice, geometry is how we measure, represent, and manipulate space using coordinate systems to translate physical objects into digital models. Everything in Blender operates within a geometric framework. The default cube you see when opening Blender, every vertex, edge, and face you create, and every transformation you perform (moving, rotating, scaling) all follow geometric rules. Physics simulations, rigging, animation, these advanced features are built on top of this geometric foundation. Understanding geometry gives you intuition for what's happening at every level of Blender.
But let's start at the beginning: with a single dot.
Dimensions, what's the point?β
0D: Positionβ
Imagine a point in geometry: something with no size, length, width, or volume, just existence and position. The problem is, without a reference system, we can't describe WHERE it is. To locate a point, we need two things: a reference point (an origin) and a dimension (an axis with direction). Once we have these, we can give any point a measurable "address" relative to the origin, which we define as 0 by convention. A dimension is the concept: the freedom of movement in a given direction. An axis is the tool: the ruler that quantifies it. On a single dimension, a point can be positioned as positive or negative relative to the origin, but it cannot move. It can only exist at one location. A point represents a location, not an object. Nothing can exist "on" a point.
1D: Direction and Lengthβ
Introducing the first dimension (and an origin point) adds two factors: direction and distance. Direction is relative to the origin: positive (usually to the right) or negative (to the left). The coordinate tells you how far the point sits from the origin along this line. In 1D space, an object gains two properties beyond location: Size (Length): A scalar value defining how far the object extends. Orientation (Facing Sign): A binary value (+ or β) indicating which direction the object points. Rotation is impossible in 1D; an object cannot change heading without leaving the line entirely. The basic 1D object is the line segment: two 0D points with a measurable distance between them. It has length and a direction, but nothing more. Position remains simply positive or negative relative to the origin. Now let's break the line and move in a different direction.
2D: The Planeβ
When we add one dimension to this baseline dimension, we end up with, lo and behold, two dimensions. This new dimension is entirely independent from the first dimension. It introduces the Y axis, which is perpendicular to the X axis. All of a sudden this gives us:
- Freedom of Movement: The point is no longer constrained to a line; it can move anywhere on a flat surface, or a Plane.
- Location (Coordinates): To locate the point on the plane that is created by introducing this second dimension, you can use two coordinates (X,Y). The point's position is now defined by its distance from the origin along both axes.
- Rotation: With two dimensions, objects can now rotate around the origin. A line segment can pivot in the plane, changing its orientation while maintaining its length.
3D: Spaceβ
Adding a third axis, the Z-axis, perpendicular to both X and Y at the origin (0,0,0), introduces depth. A point now requires three independent coordinates: (X,Y,Z). The point can move freely through three-dimensional space rather than being confined to a flat 2D plane.
While three-dimensional objects are intuitive (length, width, depth are concepts from everyday experience), it wasn't until RenΓ© Descartes developed analytic geometry in the 17th century that we had a mathematical framework to describe 3D space algebraically. The Cartesian coordinate system he pioneered, mapping points to ordered triplets (x, y, z), became the foundation for all modern 3D mathematics and visualization.
Objects and Volumeβ
A 3D object gains a third size property: volume, which emerges from length, width, and depth. Where a 2D triangle is the simplest polygon, a 3D tetrahedron (four triangular faces) is the simplest three-dimensional object. From this, we build more complex shapes: cubes, spheres, and any form imaginable.
In Blender's default setup, the three axes are color-coded and oriented as:
- X-axis (Red): Left/right movement
- Y-axis (Green): Forward/backward movement
- Z-axis (Blue): Up/down movement
Note that Blender adds a flip to the axis, some programs use Y as the axis that goes up and down, which makes sense if we consider we are coming from 2D. Blender (and some other programs, don't see the 2D plane from a side perspective but from a top down perspective, which makes the Z axis going up and down)
This is called a Z-up coordinate system, standard in most 3D applications.
Beyond 3D: Time and Animationβ
While Blender is technically a 3D program, when you animate or reconstruct, you're working in four dimensions: X, Y, Z, and time (T). Track a moving object, and you're simultaneously defining its position (X,Y,Z), rotation (three rotational axes), scale (three scale axes), and timing. That's effectively 10 dimensions of data. Blender is as much a 4D temporal environment as it is a 3D spatial one.
Summaryβ
Understanding the logic of space, from dimensionless points to full 3D volumes, provides the foundation for everything you'll do in Blender. These geometric principles aren't just abstract math; they're the language that Blender speaks.
Key Takeaways:
- Geometry is the mathematical framework underlying all 3D work
- Dimensions build progressively: 0D (point) β 1D (line) β 2D (plane) β 3D (volume)
- Blender uses a Z-up coordinate system with color-coded axes (X: red, Y: green, Z: blue)
- Animation adds time as a fourth dimension, making Blender a 4D temporal environment
- Understanding these concepts deepens your intuition for 3D reconstruction work