fj_interop/
model.rs

1use fj_math::{Aabb, Point};
2
3use crate::mesh::Mesh;
4
5/// An approximated model
6#[derive(Clone, Debug)]
7pub struct Model {
8    /// The triangle mesh that approximates the model
9    pub mesh: Mesh<Point<3>>,
10
11    /// The axis-aligned bounding box of the model
12    pub aabb: Aabb<3>,
13}