https://github.com/LayoutitStudio/voxcss
A CSS voxel engine. A 3D grid for the DOM. Renders HTML cuboids by stacking grid layers and applying transforms.
https://github.com/LayoutitStudio/voxcss
3d-transforms css-grid voxel-engine
Last synced: about 9 hours ago
JSON representation
A CSS voxel engine. A 3D grid for the DOM. Renders HTML cuboids by stacking grid layers and applying transforms.
- Host: GitHub
- URL: https://github.com/LayoutitStudio/voxcss
- Owner: LayoutitStudio
- License: mit
- Created: 2025-11-16T16:51:14.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-03-24T11:33:44.000Z (about 1 month ago)
- Last Synced: 2026-03-25T14:41:34.568Z (about 1 month ago)
- Topics: 3d-transforms, css-grid, voxel-engine
- Language: TypeScript
- Homepage: https://voxcss.com
- Size: 1.5 MB
- Stars: 417
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VoxCSS
A CSS voxel engine. A 3D grid for the DOM. Renders HTML cuboids by stacking grid layers and applying transforms. Supports colors and textures, interactions and culling, plus shapes, areas and projections. Works with Vue, React, or plain JavaScript.
Visit [voxcss.com](https://voxcss.com) for docs and model examples.

## Installation
```bash
npm install @layoutit/voxcss
```
You can also load VoxCSS directly from unpkg. Here is a minimal example:
```html
import { renderScene } from "https://unpkg.com/@layoutit/voxcss@latest/dist/index.js";
renderScene({
element: document.getElementById("voxcss"),
camera: { interactive: true },
scene: {
voxels: [
{ x: 3, y: 3, z: 0 },
{ x: 3, y: 3, z: 1 }
],
showFloor: true
}
});
```
## Framework Components
Vue and React wrappers expose the same components with identical props: `` controls the viewpoint (zoom, pan, tilt, rotation, perspective), while `` receives the voxel array and manages the 3D grid and its decorations.
```tsx
import { VoxCamera, VoxScene } from "@layoutit/voxcss/react";
export default function App() {
const voxels = [{ x: 1, y: 1, z: 0, color: "#f00" }];
return (
);
}
```

## API reference
### VoxCamera props
- `zoom`, `pan`, `tilt` – translate the camera in/out, vertically, and horizontally.
- `rotX`, `rotY` – rotate around the X/Y axis.
- `perspective` – control CSS perspective depth (or disable it).
- `interactive` – enable pointer drag controls.
- `invert` – flip pointer drag direction.
- `animate` – auto-rotate the camera; accepts `true`, a speed number, or `{ axis, speed, pauseOnInteraction }`.
### VoxScene props
- `voxels` – array of voxel objects; optional (defaults to empty) to render a blank scene.
- `rows`, `cols`, `depth` – override the inferred bounds and explicitly set the 3D grid size.
- `show-walls`, `show-floor` – toggle structural planes.
- `projection` – pick `"cubic"` or `"dimetric"` presets to change the layer spacing (50/25px).
- `mergeVoxels` – merge strategy for performance: `false` (default), `"2d"` (merge across `x`/`y` within each `z` layer), or `"3d"` (merge across `x`/`y`/`z`). If any voxel uses `z2`, the engine takes the `"3d"` render path.
### Voxel data model
Each voxel describes a single cell in the grid:
- `x`, `y`, `z` – required integer coordinates.
- `x2`, `y2`, `z2` – optional for area footprints.
- `shape` – `cube` (default), `ramp`, `wedge`, or `spike`.
- `color` / `texture` – apply solid fills or image URLs per voxel.
- `rot` – rotation in degrees; ramps/wedges/spikes snap to 90° increments.
Example:
```ts
const voxels = [
{ x: 2, y: 2, z: 0, color: "#f97316" },
{ x: 3, y: 2, z: 0, shape: "ramp", rot: 90, color: "#94a3b8" },
{ x: 3, y: 3, z: 0, texture: "/example.png" }
];
```
## Performance
VoxCSS renders everything in the DOM, so performance is mostly determined by how many elements the browser has to manage. To reduce work, the engine does culling based on voxel neighbors and camera rotation, rendering only the outer surface of the model and skipping faces that are not visible.
The `mergeVoxels` prop can be essential for performance. It controls the stacked grid geometry and allows the engine to group voxels into larger merged elements, significantly reducing DOM node count.

- `mergeVoxels="2d"` merges adjacent voxels across x / y within each z layer.
- `mergeVoxels="3d"` merges across x / y / z. This switches the engine from voxel to volumetric rendering.
## Loading MagicaVoxel (.vox) files
Use the built-in parser to turn a MagicaVoxel `.vox` binary into a voxel object and feed it to `renderScene`:
```html
import { parseMagicaVoxel, renderScene } from "@layoutit/voxcss";
const model = await fetch("/models/example.vox")
.then(r => r.arrayBuffer())
.then(parseMagicaVoxel);
renderScene({
element: document.getElementById("voxcss"),
camera: { interactive: true },
scene: {
voxels: model.voxels,
showFloor: true
}
});
```
## Made with VoxCSS
[Layoutit Voxels](https://voxels.layoutit.com)
→ A CSS Voxel editor

[Layoutit Terra](https://terra.layoutit.com)
→ A CSS Terrain Generator

## License
MIT.