This commit is contained in:
Quaternions 2024-02-06 22:52:55 -08:00
parent 05d91c3221
commit ec59d251d2

View File

@ -25,6 +25,11 @@ pub struct VertexId(u32);
pub struct IndexedVertexList{
vertices:Vec<VertexId>,
}
impl IndexedVertexList{
pub const fn new(vertices:Vec<VertexId>)->Self{
Self{vertices}
}
}
#[derive(Clone,Copy,Hash,id::Id,PartialEq,Eq)]
pub struct PolygonGroupId(u32);
pub enum PolygonGroup{