Rename topology::kinds to objects

This commit is contained in:
Hanno Braun 2024-03-23 11:45:58 +01:00
parent 9c25cb6628
commit 2c4e2e98a8
12 changed files with 3 additions and 3 deletions

View File

@ -14,14 +14,15 @@
mod any_object;
mod is_object;
mod kinds;
mod object_set;
mod objects;
mod stores;
pub use self::{
any_object::{AboutToBeStored, AnyObject, Bare, Form, Stored},
is_object::IsObject,
kinds::{
object_set::{ObjectSet, ObjectSetIntoIter, ObjectSetIter},
objects::{
curve::Curve,
cycle::Cycle,
face::{Face, Handedness},
@ -33,6 +34,5 @@ pub use self::{
surface::Surface,
vertex::Vertex,
},
object_set::{ObjectSet, ObjectSetIntoIter, ObjectSetIter},
stores::{Objects, Surfaces},
};