alphastell 0.1.0

Rust CAD generator for stellarator fusion reactors: VMEC equilibria to STEP geometry for in-vessel layers and modular coils.
Documentation
1
2
3
4
5
6
7
//! alphastell library surface. The binary (src/main.rs) also uses these modules,
//! but exposing them here lets `examples/` access `VmecData` etc. directly.

pub mod vmec;

/// 本クレート共通の Result 型 (main.rs と共通)。
pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;