Sort store parameters alphabetically

It would be nice to have a consistent rule, and this one seems as good
as any.
This commit is contained in:
Hanno Braun 2025-01-28 20:14:44 +01:00
parent 8c615c7904
commit e58bcded29
2 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ pub fn model() -> AnyOp {
let solid = Solid::connect_faces(
[bottom, top],
&mut stores.surfaces,
&mut stores.faces,
&mut stores.surfaces,
);
AnyOp::new(solid)

View File

@ -19,8 +19,8 @@ impl Solid {
pub fn connect_faces(
[a, b]: [Handle<Face>; 2],
surfaces: &mut Store<Plane>,
faces: &mut Store<Face>,
surfaces: &mut Store<Plane>,
) -> Self {
let side_faces = a
.half_edges()