# Tic Tac Toe 3D 3D board with animated X and O pieces. ```{raw} html 📄 Docs only ``` **Tags:** `game` `3d` `mesh` `animation` `game-state` A 3x3 board rendered with 3D meshes. X pieces are crossed cylinders; O pieces are scaled spheres. Pieces animate in with a scale-up bounce while a camera slowly orbits. Grid lines, highlights, and the winning line are all 3D meshes. This `main.py` is a thin entry that imports the standalone game scene from the sibling `game.py` so the existing `menu.py` and `demo.py` modules continue to resolve `from game import …`. ## Source ```{literalinclude} ../../examples/demos/tictactoe3d/main.py :language: python :linenos: ```