Given turns
Points & centroid
| Point | x | y | z |
|---|
The centroid is the flag's coordinates — round each axis to the nearest
integer and format it however your challenge asks
(e.g. flag{x,y,z}).
You are standing at the origin (0, 0, 0), looking down the default heading. You are given three turns, one after another. Each turn is relative to where you are currently facing — not the world's original axes: first a yaw (turn your head left/right around your current "up"), then a pitch (tilt up/down around your new "right"). After turning, you walk forward the given distance and arrive at a point. Then you become that point, facing the new direction, and the next turn is applied from there. Three turns give three new points; combine them with the original origin point for four points total. Connect all four — the centroid (average) of the four points is your flag.
| Point | x | y | z |
|---|
The centroid is the flag's coordinates — round each axis to the nearest
integer and format it however your challenge asks
(e.g. flag{x,y,z}).