mirror of
https://github.com/hannobraun/Fornjot
synced 2025-01-30 20:05:55 +00:00
Expect &Geometry
in check_interior_cycles
This commit is contained in:
parent
24f08b6be2
commit
f33f5ca712
@ -19,7 +19,9 @@ impl Validate for Sketch {
|
|||||||
SketchValidationError::check_exterior_cycles(
|
SketchValidationError::check_exterior_cycles(
|
||||||
self, geometry, config, errors,
|
self, geometry, config, errors,
|
||||||
);
|
);
|
||||||
SketchValidationError::check_interior_cycles(self, config, errors);
|
SketchValidationError::check_interior_cycles(
|
||||||
|
self, geometry, config, errors,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -94,6 +96,7 @@ impl SketchValidationError {
|
|||||||
|
|
||||||
fn check_interior_cycles(
|
fn check_interior_cycles(
|
||||||
sketch: &Sketch,
|
sketch: &Sketch,
|
||||||
|
_: &Geometry,
|
||||||
_config: &ValidationConfig,
|
_config: &ValidationConfig,
|
||||||
errors: &mut Vec<ValidationError>,
|
errors: &mut Vec<ValidationError>,
|
||||||
) {
|
) {
|
||||||
|
Loading…
Reference in New Issue
Block a user