1860b51f70
Front-door publicable de dominium: los 9 crates propios como path members; Llimphi, app-bus, rimay-localize, wawa-config y pluma-notebook por git-dep al monorepo tawasuyu.git (branch=main). cargo check --workspace --all-targets pasa exit 0. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
19 lines
667 B
Markdown
19 lines
667 B
Markdown
# dominium-render-plan
|
|
|
|
> World → painter-ordered `Vec<Quad>` for [dominium](../README.md).
|
|
|
|
Takes a `World` snapshot ([`dominium-core`](../dominium-core/README.md)) and produces a list of `Quad { x, y, w, h, color, depth }` ordered painter-style (back-to-front). Doesn't touch the world — only reads. 30° projection comes from [`dominium-iso`](../dominium-iso/README.md). Output consumable by any renderer (Llimphi/vello, WebGL, SVG).
|
|
|
|
## API
|
|
|
|
```rust
|
|
use dominium_render_plan::plan;
|
|
|
|
let quads = plan(&world); // ordered Vec<Quad>
|
|
```
|
|
|
|
## Deps
|
|
|
|
- [`dominium-core`](../dominium-core/README.md), [`dominium-iso`](../dominium-iso/README.md)
|
|
- Zero graphics deps
|