nannou_core

Crates.ionannou_core
lib.rsnannou_core
version0.19.0
sourcesrc
created_at2021-06-20 17:42:32.836433
updated_at2024-01-17 07:38:54.032618
descriptionThe core components of nannou - a creative coding framework for Rust. Ideal for libraries and headless/embedded applications that use nannou.
homepagehttps://nannou.cc
repositoryhttps://github.com/nannou-org/nannou.git
max_upload_size
id412522
size148,967
Joshua Batty (JoshuaBatty)

documentation

README

nannou_core

nannou's core abstractions.

This crate aims to be a stripped-down foundation for nannou projects that don't require windowing or wgpu graphics. These might include:

  • Headless applications, e.g. for LASER or lighting control.
  • Embedded applications, e.g. driving motors or LEDs in an art installation.
  • rust-gpu shaders which have strict requirements beyond the limitations of no_std.
  • Hot-loaded dynamic libraries that benefit from faster compilation times.

The crate includes nannou's color, math, geometry and noise abstractions without the deep stack of crates required to establish an event loop, interoperate with wgpu, etc. Another way of describing this crate might be "nannou without the I/O".

Crate [features]

The primary feature of this crate is support for #![no_std]. This means we can use the crate for embedded applications and in some cases rust-gpu shaders.

By default, the std feature is enabled. For compatibility with a #![no_std] environment be sure to disable default features (i.e. default-features = false) and enable the libm feature. The libm feature provides some core functionality required by crates

  • std: Enabled by default, enables the Rust std library. One of the primary features of this crate is support for #![no_std]. This means we can use the crate for embedded applications and in some cases rust-gpu shaders. For compatibility with a #![no_std] environment be sure to disable default features (i.e. default-features = false) and enable the libm feature.
  • libm: provides some core math support in the case that std is not enabled. This feature must be enabled if std is disabled.
  • serde: enables the associated serde serialization/deserialization features in glam, palette and rand.
Commit count: 1659

cargo fmt