Rename argument

This commit is contained in:
Hanno Braun 2022-10-10 20:02:41 +02:00
parent 3332b629c9
commit 10839ba562

View File

@ -18,15 +18,15 @@ impl Shape for fj::Transform {
fn compute_brep( fn compute_brep(
&self, &self,
config: &ValidationConfig, config: &ValidationConfig,
stores: &Objects, objects: &Objects,
planes: &Planes, planes: &Planes,
debug_info: &mut DebugInfo, debug_info: &mut DebugInfo,
) -> Result<Validated<Self::Brep>, ValidationError> { ) -> Result<Validated<Self::Brep>, ValidationError> {
let faces = self let faces = self
.shape .shape
.compute_brep(config, stores, planes, debug_info)? .compute_brep(config, objects, planes, debug_info)?
.into_inner() .into_inner()
.transform(&make_transform(self), stores); .transform(&make_transform(self), objects);
faces.validate_with_config(config) faces.validate_with_config(config)
} }