cad_import 0.3.1

A simple library for importing CAD data from different formats into a uniform in-memory structure.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod component;
mod mesh;
mod primitives;
mod vertices;

mod material;
mod shape;

pub use component::{Component, Float, Normal, Point3D};
pub use material::{Material, PhongMaterialData};
pub use mesh::Mesh;
pub use primitives::{PrimitiveType, Primitives, IndexData};
pub use shape::{Shape, ShapePart};
pub use vertices::{Colors, Normals, Positions, Vertices};