objex 0.2.0

object entity creation and persistence using matcat and geospec
Documentation
pub mod core;
pub mod systems;
pub mod persist;
pub mod error;

pub use error::{ObjexError, Result};

pub use core::{
    Object,
    CompositeObject,
    types::{Objex, Shape, MaterialLink},
};

pub use systems::{
    mass,
    strength,
    thermal,
    degradation,
    mechanical,
    composite as systems_composite,
    electrical,
};

pub use persist::{insert_objex, fetch_objex};