Meshes with L-Systems
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
examples Write playpen example. Nov 19, 2018
src Don't box mesh iterators. Dec 1, 2018
.gitignore Ignore output. Nov 17, 2018
.travis.yml Remove unstable features. Nov 17, 2018
AUTHORS Fix authors file. Nov 17, 2018
CONTRIBUTING.md Add license info. Nov 17, 2018
Cargo.toml Don't box mesh iterators. Dec 1, 2018
LICENSE Add license info. Nov 17, 2018
readme.md Remove unstable features. Nov 17, 2018

readme.md

immense

crates.io

A library for describing 3D meshes with simple composable rules.

rule![
    tf![
        Tf::saturation(0.8),
        Tf::hue(160.0),
        Replicate::n(36, vec![Tf::rz(10.0), Tf::ty(0.1)]),
        Replicate::n(36, vec![Tf::ry(10.0), Tf::tz(1.2), Tf::hue(3.4)]),
    ] => cube()
]