Rename argument

This commit is contained in:
Hanno Braun 2022-10-10 19:59:09 +02:00
parent da5cf263a1
commit c1364d2ab9

View File

@ -17,14 +17,14 @@ impl Shape for fj::Group {
fn compute_brep(
&self,
config: &ValidationConfig,
stores: &Objects,
objects: &Objects,
planes: &Planes,
debug_info: &mut DebugInfo,
) -> Result<Validated<Self::Brep>, ValidationError> {
let mut faces = Faces::new();
let a = self.a.compute_brep(config, stores, planes, debug_info)?;
let b = self.b.compute_brep(config, stores, planes, debug_info)?;
let a = self.a.compute_brep(config, objects, planes, debug_info)?;
let b = self.b.compute_brep(config, objects, planes, debug_info)?;
faces.extend(a.into_inner());
faces.extend(b.into_inner());