//! Core sound primitives for the SIM music constellation.
//!
//! This crate defines the foundational acoustic types shared by the
//! sound/synthesis layer: [`Frequency`], [`Amplitude`], and [`Phase`]
//! quantities; the [`Partial`], [`Envelope`], and [`Tone`] models that build a
//! spectral tone from sinusoidal components; and helpers for default envelopes
//! and equal-temperament pitch-to-frequency conversion.
pub use *;
/// Cookbook recipes for this lib, embedded at build time.
pub static RECIPES: EmbeddedDir =
include!;