Move Cycle validation check to Face/Sketch

The code of this check is going to require access to a `Surface` soon,
due to changes I'm working on. The reshuffling done in this commit is
preparation for having this surface available.
This commit is contained in:
Hanno Braun 2024-04-23 14:38:58 +02:00
parent 1a483918cf
commit 97bf88fbe8
4 changed files with 73 additions and 24 deletions

View File

@ -1,10 +1,7 @@
use crate::{
geometry::Geometry,
topology::Cycle,
validation::{
checks::AdjacentHalfEdgesNotConnected, ValidationCheck,
ValidationConfig, ValidationError,
},
validation::{ValidationConfig, ValidationError},
};
use super::Validate;
@ -12,13 +9,9 @@ use super::Validate;
impl Validate for Cycle {
fn validate(
&self,
config: &ValidationConfig,
errors: &mut Vec<ValidationError>,
geometry: &Geometry,
_: &ValidationConfig,
_: &mut Vec<ValidationError>,
_: &Geometry,
) {
errors.extend(
AdjacentHalfEdgesNotConnected::check(self, geometry, config)
.map(Into::into),
);
}
}

View File

@ -2,7 +2,10 @@ use crate::{
geometry::Geometry,
topology::Face,
validation::{
checks::{FaceHasNoBoundary, InteriorCycleHasInvalidWinding},
checks::{
AdjacentHalfEdgesNotConnected, FaceHasNoBoundary,
InteriorCycleHasInvalidWinding,
},
ValidationCheck, ValidationConfig, ValidationError,
},
};
@ -16,6 +19,10 @@ impl Validate for Face {
errors: &mut Vec<ValidationError>,
geometry: &Geometry,
) {
errors.extend(
AdjacentHalfEdgesNotConnected::check(self, geometry, config)
.map(Into::into),
);
errors.extend(
FaceHasNoBoundary::check(self, geometry, config).map(Into::into),
);

View File

@ -5,6 +5,7 @@ use crate::{
storage::Handle,
topology::{Cycle, Sketch},
validate_references,
validation::{checks::AdjacentHalfEdgesNotConnected, ValidationCheck},
};
use super::{
@ -19,6 +20,10 @@ impl Validate for Sketch {
errors: &mut Vec<ValidationError>,
geometry: &Geometry,
) {
errors.extend(
AdjacentHalfEdgesNotConnected::check(self, geometry, config)
.map(Into::into),
);
SketchValidationError::check_object_references(self, config, errors);
SketchValidationError::check_exterior_cycles(
self, geometry, config, errors,

View File

@ -3,7 +3,7 @@ use fj_math::{Point, Scalar};
use crate::{
geometry::Geometry,
storage::Handle,
topology::{Cycle, HalfEdge},
topology::{Cycle, Face, HalfEdge, Region, Sketch},
validation::{validation_check::ValidationCheck, ValidationConfig},
};
@ -57,16 +57,40 @@ pub struct AdjacentHalfEdgesNotConnected {
pub unconnected_half_edges: [Handle<HalfEdge>; 2],
}
impl ValidationCheck<Cycle> for AdjacentHalfEdgesNotConnected {
impl ValidationCheck<Face> for AdjacentHalfEdgesNotConnected {
fn check<'r>(
object: &'r Cycle,
object: &'r Face,
geometry: &'r Geometry,
config: &'r ValidationConfig,
) -> impl Iterator<Item = Self> + 'r {
check_cycle(object, geometry, config)
check_region(object.region(), geometry, config)
}
}
impl ValidationCheck<Sketch> for AdjacentHalfEdgesNotConnected {
fn check<'r>(
object: &'r Sketch,
geometry: &'r Geometry,
config: &'r ValidationConfig,
) -> impl Iterator<Item = Self> + 'r {
object
.regions()
.iter()
.flat_map(|region| check_region(region, geometry, config))
}
}
fn check_region<'r>(
region: &'r Region,
geometry: &'r Geometry,
config: &'r ValidationConfig,
) -> impl Iterator<Item = AdjacentHalfEdgesNotConnected> + 'r {
[region.exterior()]
.into_iter()
.chain(region.interiors())
.flat_map(|cycle| check_cycle(cycle, geometry, config))
}
fn check_cycle<'r>(
cycle: &'r Cycle,
geometry: &'r Geometry,
@ -105,10 +129,10 @@ mod tests {
use crate::{
operations::{
build::{BuildCycle, BuildHalfEdge},
update::UpdateCycle,
build::{BuildFace, BuildHalfEdge},
update::{UpdateCycle, UpdateFace, UpdateRegion},
},
topology::{Cycle, HalfEdge},
topology::{Face, HalfEdge},
validation::ValidationCheck,
Core,
};
@ -119,16 +143,36 @@ mod tests {
fn adjacent_half_edges_not_connected() -> anyhow::Result<()> {
let mut core = Core::new();
let valid = Cycle::polygon([[0., 0.], [1., 0.], [1., 1.]], &mut core);
// We're only testing for `Face` here, not `Sketch`. Should be fine, as
// most of the code is shared.
let valid = Face::polygon(
core.layers.topology.surfaces.space_2d(),
[[0., 0.], [1., 0.], [1., 1.]],
&mut core,
);
AdjacentHalfEdgesNotConnected::check_and_return_first_error(
&valid,
&core.layers.geometry,
)?;
let invalid = valid.update_half_edge(
valid.half_edges().first(),
|_, core| {
[HalfEdge::line_segment([[0., 0.], [2., 0.]], None, core)]
let invalid = valid.update_region(
|region, core| {
region.update_exterior(
|cycle, core| {
cycle.update_half_edge(
cycle.half_edges().first(),
|_, core| {
[HalfEdge::line_segment(
[[0., 0.], [2., 0.]],
None,
core,
)]
},
core,
)
},
core,
)
},
&mut core,
);