fbxcel-dom 0.0.10

FBX DOM library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Mesh data.

pub use self::{
    control_point::ControlPointIndex,
    polygon_vertex_index::{
        IntoCpiWithPolyVerts, PolygonIndex, PolygonVertex, PolygonVertexIndex, PolygonVertices,
    },
    triangle_vertex_index::{
        IntoCpiWithTriVerts, IntoPvWithTriVerts, TriangleIndex, TriangleVertexIndex,
        TriangleVertices,
    },
};
pub(crate) use self::{control_point::ControlPoints, polygon_vertex_index::RawPolygonVertices};

mod control_point;
pub mod layer;
mod polygon_vertex_index;
mod triangle_vertex_index;