nannou_core 0.20.0

The core components of nannou - a creative coding framework for Rust. Ideal for libraries and headless/embedded applications that use nannou.
Documentation
pub use glam::{Vec2, Vec3, Vec4, vec2, vec3, vec4};

/// A common alias for the `glam::Vec2` type.
#[deprecated(
    since = "0.17.0",
    note = "Use Vec2 now that we have switched to `glam`"
)]
pub type Vector2 = glam::Vec2;

/// A common alias for the `glam::Vec3` type.
#[deprecated(
    since = "0.17.0",
    note = "Use Vec3 now that we have switched to `glam`"
)]
pub type Vector3 = glam::Vec3;

/// A common alias for the `glam::Vec4` type.
#[deprecated(
    since = "0.17.0",
    note = "Use Vec4 now that we have switched to `glam`"
)]
pub type Vector4 = glam::Vec4;