There are exactly 11 distinct cube nets among the 35 free hexominoes, and a cube net puzzle asks you to identify which arrangements of six edge-connected squares fold into a closed cube without two faces landing on the same side. This number — 11 valid cube nets out of 35 free hexominoes — comes from treating rotations and mirror images as equivalent shapes and is confirmed in published combinatorial references. The Cube Net Puzzle game presents eight fixed patterns drawn from that complete 35-shape set and asks one focused question for each: will this six-square arrangement fold into a cube, or will two faces collide? A correct answer advances the run and adds 125 points; two wrong answers end the run until you restart. The puzzle runs entirely in the browser, accepts keyboard Y and N inputs or large touch buttons, and finishes at exactly 1,000 points when all eight questions are classified correctly. This article explains what a cube net puzzle actually tests, the combinatorial math behind valid cube nets, and how to work through the eight rounds of the game without getting deadlocked.

What a Cube Net Puzzle Tests
A cube net puzzle presents flat arrangements of six unit squares joined edge to edge and asks a single geometric question for each: when the squares are folded along their shared edges, do they close into a perfect cube, or do faces overlap? Each shared edge acts as a hinge. Folding along that hinge rotates the neighboring square up into three-dimensional space while keeping the current square fixed. If the pattern is valid, the six folded squares cover all six faces of a cube — top, bottom, front, back, left, and right — with no face missing and no two faces occupying the same direction. If the pattern is invalid, the folding forces either a face collision or leaves a direction uncovered. The Cube Net Puzzle game frames this geometric question as a Yes or No choice, and behind that simple interface is a complete combinatorial test grounded in the mathematics of polyominoes.
The 11-Out-of-35 Hexomino Math
A hexomino is a shape made from six equal squares joined edge to edge. When translations, rotations, and mirror images are treated as equivalent, there are exactly 35 distinct free hexominoes. Among those 35 shapes, exactly 11 are nets of a cube. This result is established in the mathematical literature: the Wolfram MathWorld entry on cube nets discusses the 11-net result, and an American Mathematical Society feature on unfolding polyhedra shows the complete set of eleven valid cube nets in its Figure 9. The Cube Net Puzzle stores all eleven valid shapes as canonical coordinate fixtures and treats them as the positive cases. The remaining 24 free hexominoes are the negative cases — they look like nets at a glance but cannot be folded into a cube. Because the puzzle draws from the complete 35-shape set, every classification has a definitive geometric answer rather than a visual guess. The game's test suite confirms that the local folding algorithm accepts exactly 11 shapes and rejects the other 24.
How the Three-Dimensional Fold Check Works
Behind the Yes or No buttons, the Cube Net Puzzle runs a deterministic three-dimensional check that treats one square as a starting face pointing in the positive z direction and walks outward from there. The algorithm uses breadth-first search across shared edges and rotates the neighboring square's right, down, and normal vectors by a quarter turn around each hinge as it crosses from one square to the next. Every cell gets a three-dimensional orientation assigned by the traversal. A pattern is accepted as a valid cube net only when a small set of geometric conditions all hold.
| Check | What it requires | Why it matters |
|---|---|---|
| Connectivity | All six squares are connected by shared edges. | Isolated cells cannot fold into a cube. |
| Orientation agreement | Repeated traversals agree on the same three-dimensional orientation for each shared cell. | Loops cannot demand contradictory normals. |
| Normal uniqueness | All six final face normals are distinct. | Two faces cannot occupy the same cube side. |
| Axis coverage | The six normals are exactly the ±x, ±y, and ±z axes of a cube. | All six cube directions must be covered, no extra directions allowed. |
If any cell ends up with the same normal as another cell, two squares are trying to land on the same cube face, and the pattern is rejected. An independent enumeration check grows polyominoes one edge at a time, normalizes each candidate under translation and all eight planar symmetries, and confirms the canonical 35-shape set. Together, the fold test and the canonicalization give the puzzle a defensible geometric answer for every six-square pattern it shows.
How to Solve the Cube Net Puzzle in 8 Rounds
- Inspect how the six edge-connected squares branch from one another and imagine each shared edge as a hinge. The Cube Net Puzzle shows one diagram per round, and the first job is to map which squares connect to which.
- Mentally fold along the hinges by rotating each neighboring square up into three dimensions. Track which cube direction each square wants to land on — top, bottom, front, back, left, or right.
- Choose Yes if all six squares can cover the cube's six faces with no collisions, or No if any two squares would land on the same face or leave a direction uncovered. Keyboard players press Y for Yes or N for No; touch players tap the large Yes or No buttons.
- Read the status line for the current question number and mistake count. A correct answer advances to the next fixed question and awards 125 points; a wrong answer leaves the same pattern on screen so you can reconsider its hinges.
- Classify all eight fixed nets for exactly 1,000 points before two incorrect answers deadlock the run. After two mistakes, click Restart to reset question one, score, mistake count, and the unfrozen board.
Patterns That Look Like Cube Nets But Are Not
Not every six-square arrangement is a cube net, and a few specific shapes are common visual traps. The 2-by-3 rectangle — six squares in two rows of three — is the most famous near-net. It looks like it should fold, but folding forces two of its squares onto the same cube face, so it is one of the rejected cases in the canonical 35-shape enumeration. Other invalid shapes include T-shaped patterns where the perpendicular branches create face collisions, and loop-shaped patterns where the traversal arrives back at a starting square with a conflicting orientation. The game's test suite explicitly rejects these cases: duplicate cells are flagged, disconnected six-cell inputs are rejected, and the 2-by-3 rectangle is listed as a non-net. When the diagram in the Cube Net Puzzle shows a shape that looks symmetric, remember that symmetry on the page does not guarantee foldability — only a careful hinge-by-hinge walkthrough tells you whether the six squares can actually become a cube. Recognizing the 2-by-3 rectangle and the most common T and loop shapes is enough to avoid several of the non-net rounds and protect your two-mistake budget.
Score, Controls, and Restart Strategy
The eight rounds are deterministic: four valid cube nets and four non-nets are selected from the complete 35-shape set in a stable order. There is no random seed, no remote question feed, and no hidden daily rotation, so the same eight patterns appear in the same sequence on every run. This stability is what makes the puzzle useful as a release check: local and production browser tests can submit the same answer sequence, see the same intermediate states, and finish at the same 1,000-point total. Input works through three paths — touch buttons for phones, mouse clicks for desktop, and Y or N on the keyboard for fast play. The two large answer buttons have visible focus behavior, the diagram is an accessible SVG with a descriptive label, and the status line reports the current question and mistake count. The shared game shell supplies Restart and a double-Escape boss key. A wrong answer does not advance the round but does not end the run either; two wrong answers do. Restart always restores question one, a zero score, zero mistakes, and an unfrozen board, so a run that deadlocks on question seven can be replayed in full. For readers who want more spatial puzzle practice, the counting blocks challenge in Count the Cubes Game: Include Hidden Blocks for 1,000 tests a related skill — reading three-dimensional stacks — and pairs naturally with cube net classification.