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