ux-dx 0.2.1

3D Graphics Primitives for Angular Rust
Documentation
//! Different vertex structures

mod p2;
pub use p2::P2;

mod p2c4;
pub use p2c4::P2C4;

mod p2t2;
pub use p2t2::P2T2;

mod p2t2c4;
pub use p2t2c4::P2T2C4;

mod p3;
pub use p3::P3;

mod p3c4;
pub use p3c4::P3C4;

mod p3n3;
pub use p3n3::P3N3;

mod p3n3c4;
pub use p3n3c4::P3N3C4;

mod p3n3t2;
pub use p3n3t2::P3N3T2;

mod p3n3t2c4;
pub use p3n3t2c4::P3N3T2C4;

mod p3t2;
pub use p3t2::P3T2;

mod p3t2c4;
pub use p3t2c4::P3T2C4;