mirror of
https://github.com/hannobraun/Fornjot
synced 2025-02-12 18:26:00 +00:00
Rename argument
This commit is contained in:
parent
da5cf263a1
commit
c1364d2ab9
@ -17,14 +17,14 @@ impl Shape for fj::Group {
|
|||||||
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 mut faces = Faces::new();
|
let mut faces = Faces::new();
|
||||||
|
|
||||||
let a = self.a.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, stores, planes, debug_info)?;
|
let b = self.b.compute_brep(config, objects, planes, debug_info)?;
|
||||||
|
|
||||||
faces.extend(a.into_inner());
|
faces.extend(a.into_inner());
|
||||||
faces.extend(b.into_inner());
|
faces.extend(b.into_inner());
|
||||||
|
Loading…
Reference in New Issue
Block a user