usefj_math::{Aabb, Point};usecrate::mesh::Mesh;/// An approximated model
#[derive(Clone, Debug)]pubstructModel{/// The triangle mesh that approximates the model
pubmesh:Mesh<Point<3>>,
/// The axis-aligned bounding box of the model
pubaabb:Aabb<3>,
}