threemf2 0.2.0

3MF (3D Manufacturing Format) file format support
Documentation
/// Defines the type representing the 3MF Model element and elements and attributes related to it.
pub mod model;

/// Defines the type representing the Metadata element and other elements and attributes related to it.
pub mod metadata;

/// Defines the type representing the Resources elements and other elements and attributes related to it.
pub mod resources;

/// Defines the type representing a  Object and other elements and atrributes related to it.
pub mod object;

/// Defines the type representing a Mesh object and other elements and attributes related to it.
pub mod mesh;

/// Defines the type representing a Components object and other elements and attributes related to it.
pub mod component;

/// Defines the Transform type for use in Model.
pub mod transform;

/// Defines the type representing Build and other elements and attributes related to it.
pub mod build;

/// Defines the type representing Triangle Sets and other elements and attributes related to it.
pub mod triangle_set;

/// Defines the type representing a Beam Lattice element and other elements and attributes related to it.
pub mod beamlattice;

/// Defines the type representing a Boolean Shape element and other elements and attributes related to it.
pub mod boolean;

/// Defines 3MF specification-compliant type aliases for IDs and indices.
pub mod types;

pub use types::{OptionalResourceId, OptionalResourceIndex, ResourceId, ResourceIndex};