//! Parameters which a **Drawing** instance may use to describe certain properties of a drawing.
//!
//! Each time a new method is chained onto a **Drawing** instance, it uses the given values to set
//! one or more properties for the drawing.
//!
//! Each **Drawing** instance is associated with a specific **Node** in the geometry graph and has
//! a unique **node::Index** to simplify this.
pub use SetColor;
pub use SetFill;
pub use SetDimensions;
pub use SetOrientation;
pub use SetPosition;
pub use SetStroke;
/// The scalar type used for the color channel values.
pub type ColorScalar = crateDefaultScalar;
/// The RGBA type used by the `Common` params.
pub type Srgba = DefaultSrgba;
/// The RGBA type used by the `Common` params.
pub type LinSrgba = DefaultLinSrgba;