Skip to main content

runmat_geometry_core/model/
mod.rs

1mod assembly;
2mod field;
3mod geometry;
4mod material_evidence;
5mod mesh;
6mod regions;
7mod source_geometry;
8mod tessellation_profile;
9mod topology;
10mod units;
11
12pub use assembly::AssemblyNode;
13pub use field::{FieldLocation, FieldValueKind};
14pub use geometry::{GeometryAsset, GeometrySource};
15pub use material_evidence::{MaterialEvidence, MaterialEvidenceConfidence};
16pub use mesh::{MeshDescriptor, MeshKind, SurfaceMesh};
17pub use regions::{
18    CadColorEvidence, CadLabelRef, CadPhysicalMaterialEvidence, CadRegionOwnership,
19    CadSemanticKind, EntityIdRange, Region, RegionEntityMapping,
20};
21pub use source_geometry::{SourceGeometry, SourceGeometryKind};
22pub use tessellation_profile::{HealingMode, TessellationProfile};
23pub use topology::ElementKind;
24pub use units::UnitSystem;