├── .gitignore ├── .travis.yml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── book-tests ├── .gitignore ├── Cargo.toml ├── build.rs ├── libtest.rmeta ├── src │ └── lib.rs └── tests │ └── skeptic.rs ├── book.toml ├── src ├── SUMMARY.md ├── api_reference.md ├── code_of_conduct.md ├── contributors.md ├── developer_reference.md ├── getting_started.md ├── getting_started │ ├── create_a_project.md │ ├── editor_setup.md │ ├── installing_rust.md │ ├── platform-specific_setup.md │ ├── running_examples.md │ └── updating.md ├── showcases.md ├── tutorials.md ├── tutorials │ └── basics │ │ ├── anatomy-of-a-nannou-app.md │ │ ├── draw-a-sketch.md │ │ ├── drawing-2d-shapes.md │ │ └── images │ │ ├── 2d-complete-octogon-outline.png │ │ ├── 2d-custom-circle-outline.png │ │ ├── 2d-custom-octogon-polygon.png │ │ ├── 2d-shape-circle.png │ │ ├── 2d-shape-ellipse.png │ │ ├── 2d-shape-quad.png │ │ ├── 2d-shape-rect.png │ │ ├── 2d-shape-tri.png │ │ ├── 2d-simple-line.png │ │ └── 2d-simple-polyline.png ├── welcome.md └── why_nannou.md └── travis_deploy.sh /.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/README.md -------------------------------------------------------------------------------- /book-tests/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /book-tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/book-tests/Cargo.toml -------------------------------------------------------------------------------- /book-tests/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/book-tests/build.rs -------------------------------------------------------------------------------- /book-tests/libtest.rmeta: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /book-tests/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /book-tests/tests/skeptic.rs: -------------------------------------------------------------------------------- 1 | include!(concat!(env!("OUT_DIR"), "/skeptic-tests.rs")); -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/book.toml -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/api_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/api_reference.md -------------------------------------------------------------------------------- /src/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/code_of_conduct.md -------------------------------------------------------------------------------- /src/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/contributors.md -------------------------------------------------------------------------------- /src/developer_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/developer_reference.md -------------------------------------------------------------------------------- /src/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/getting_started.md -------------------------------------------------------------------------------- /src/getting_started/create_a_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/getting_started/create_a_project.md -------------------------------------------------------------------------------- /src/getting_started/editor_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/getting_started/editor_setup.md -------------------------------------------------------------------------------- /src/getting_started/installing_rust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/getting_started/installing_rust.md -------------------------------------------------------------------------------- /src/getting_started/platform-specific_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/getting_started/platform-specific_setup.md -------------------------------------------------------------------------------- /src/getting_started/running_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/getting_started/running_examples.md -------------------------------------------------------------------------------- /src/getting_started/updating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/getting_started/updating.md -------------------------------------------------------------------------------- /src/showcases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/showcases.md -------------------------------------------------------------------------------- /src/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/tutorials.md -------------------------------------------------------------------------------- /src/tutorials/basics/anatomy-of-a-nannou-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/tutorials/basics/anatomy-of-a-nannou-app.md -------------------------------------------------------------------------------- /src/tutorials/basics/draw-a-sketch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/tutorials/basics/draw-a-sketch.md -------------------------------------------------------------------------------- /src/tutorials/basics/drawing-2d-shapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/tutorials/basics/drawing-2d-shapes.md -------------------------------------------------------------------------------- /src/tutorials/basics/images/2d-complete-octogon-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/tutorials/basics/images/2d-complete-octogon-outline.png -------------------------------------------------------------------------------- /src/tutorials/basics/images/2d-custom-circle-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/tutorials/basics/images/2d-custom-circle-outline.png -------------------------------------------------------------------------------- /src/tutorials/basics/images/2d-custom-octogon-polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/tutorials/basics/images/2d-custom-octogon-polygon.png -------------------------------------------------------------------------------- /src/tutorials/basics/images/2d-shape-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/tutorials/basics/images/2d-shape-circle.png -------------------------------------------------------------------------------- /src/tutorials/basics/images/2d-shape-ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/tutorials/basics/images/2d-shape-ellipse.png -------------------------------------------------------------------------------- /src/tutorials/basics/images/2d-shape-quad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/tutorials/basics/images/2d-shape-quad.png -------------------------------------------------------------------------------- /src/tutorials/basics/images/2d-shape-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/tutorials/basics/images/2d-shape-rect.png -------------------------------------------------------------------------------- /src/tutorials/basics/images/2d-shape-tri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/tutorials/basics/images/2d-shape-tri.png -------------------------------------------------------------------------------- /src/tutorials/basics/images/2d-simple-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/tutorials/basics/images/2d-simple-line.png -------------------------------------------------------------------------------- /src/tutorials/basics/images/2d-simple-polyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/tutorials/basics/images/2d-simple-polyline.png -------------------------------------------------------------------------------- /src/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/welcome.md -------------------------------------------------------------------------------- /src/why_nannou.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/src/why_nannou.md -------------------------------------------------------------------------------- /travis_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nannou-org/guide/HEAD/travis_deploy.sh --------------------------------------------------------------------------------