Thinking in 3D: Coordinate Systems and Views
Learn to locate any point in space and look at a part from every side, the mental skill that makes CAD click.
Sign in to track progress, earn XP, and save lessons.
Why spatial thinking comes first
CAD is just a tool for describing shapes in space. If you can already picture a part from different angles and name where its features are, the software gets easy fast. If you can't, no amount of clicking saves you. So before any software, get comfortable with the two things every CAD model is built on: a coordinate system and views.
The 3D coordinate system
Every point in space is three numbers: X, Y, Z, measured from a fixed point called the origin (0, 0, 0). In CAD:
- X is side-to-side
- Y is front-to-back (or up, depending on the program)
- Z is the remaining direction, perpendicular to the other two
A point at (3, 0, 5) sits 3 units along X, 0 along Y, 5 along Z. You'll place sketches, holes, and parts by referencing coordinates like these off the origin, so where you put the origin matters. Drop it somewhere sensible — the center of your drivetrain frame, sitting on the floor — and the model is far easier to mirror, assemble, and measure. Let parts float at random coordinates and every later step fights you.
How FRC uses the same idea
The robot code uses these exact conventions. WPILib (the official FRC software library) defines the robot frame as +X forward, +Y to the robot's left, +Z up — the "NWU" convention. On the field, +X points away from your driver-station wall, +Y is to the left, and counter-clockwise rotation is positive.
This is worth matching in CAD. If your model's forward direction and origin agree with how the code thinks about the robot, conversations between the mechanical and software students stop turning into translation headaches — "forward" means the same thing in both places.
Views: one part from many sides
A part is 3D, but you inspect and dimension it through views — pictures taken looking straight down one axis. The standard three:
- Front — the most descriptive face
- Top — looking straight down
- Right side — looking from the side
The real skill is mentally jumping between them. If a bracket has a hole on its front face, where is that hole in the top view? It shows up as a pair of dashed (hidden) lines, because now you're looking down across it. These are orthographic views, and the next lesson goes deep on them.
There's also the isometric view — a single tilted picture showing three faces at once. Isometric is great for quickly understanding a shape; orthographic views are what you build and dimension from.
Practice this now
- Grab a real robot part — a gearbox, a wheel hub. Name its size along X, Y, and Z.
- Sketch its front, top, and right views on paper.
- Rotate it in your hands and predict how one feature moves between those views.
Do this a dozen times and orbiting a model, picking a sketch plane, and placing the origin will feel obvious before you touch the mouse.
Key takeaways
- Every point in 3D is (X, Y, Z) measured from an origin where three perpendicular axes meet.
- CAD and CNC systems use the right-hand rule so axis directions are consistent everywhere.
- FRC's WPILib uses +X forward, +Y left, +Z up; choosing a matching CAD origin makes assembly far easier.
- Orthographic views (front/top/side) are for measuring and building; isometric views are for quick 3D understanding.
- Mentally switching a feature between views is the core spatial skill that makes CAD intuitive.
Go deeper
Lesson quiz
RequiredAnswer all 3 questions correctly to complete this lesson.
1.In WPILib's robot coordinate convention, which direction does the positive X axis point?
2.What is the purpose of the right-hand rule in CAD?
3.Which view shows three faces of a part in a single tilted picture and is best for quick 3D understanding?
Answer every question to submit.