From 72f02987d2078e1f48a8bb9b7f4007842990488e Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 10 Oct 2022 20:01:59 +0200 Subject: [PATCH] Rename argument --- crates/fj-operations/src/sketch.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/fj-operations/src/sketch.rs b/crates/fj-operations/src/sketch.rs index 9dafad662..9da518db1 100644 --- a/crates/fj-operations/src/sketch.rs +++ b/crates/fj-operations/src/sketch.rs @@ -18,7 +18,7 @@ impl Shape for fj::Sketch { fn compute_brep( &self, config: &ValidationConfig, - stores: &Objects, + objects: &Objects, planes: &Planes, _: &mut DebugInfo, ) -> Result, ValidationError> { @@ -32,7 +32,7 @@ impl Shape for fj::Sketch { let half_edge = HalfEdge::partial() .with_surface(Some(surface.clone())) .as_circle_from_radius(circle.radius()) - .build(stores); + .build(objects); let cycle = Cycle::new(surface, [half_edge]); Face::from_exterior(cycle).with_color(Color(self.color())) @@ -41,7 +41,7 @@ impl Shape for fj::Sketch { let points = poly_chain.to_points().into_iter().map(Point::from); - Face::builder(stores, surface) + Face::builder(objects, surface) .with_exterior_polygon_from_points(points) .build() .with_color(Color(self.color()))