orrery-core 0.3.0

Core types and definitions for Orrery diagrams
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Orrery Core Types and Definitions
//!
//! This crate provides the foundational types and definitions for the Orrery
//! diagram language. It includes:
//!
//! - **Interner**: Shared global string interner ([`interner`] module)
//! - **Identifiers**: Efficient string-interned identifiers ([`identifier::Id`])
//! - **Colors**: Color handling with CSS color support ([`color::Color`])
//! - **Geometry**: Basic geometric types ([`geometry`] module)
//! - **Draw**: Visual definitions for diagram elements ([`draw`] module)
//! - **Semantic**: Semantic model types for diagrams ([`semantic`] module)

pub mod color;
pub mod draw;
pub mod geometry;
pub mod identifier;
pub mod interner;
pub mod semantic;