Merge pull request #2272 from hannobraun/geometry

Make `Geometry` available to `ValidationCheck` implementations
This commit is contained in:
Hanno Braun 2024-03-18 14:01:58 +01:00 committed by GitHub
commit 9f817d9738
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 23 additions and 8 deletions

View File

@ -14,10 +14,11 @@ impl Validate for Cycle {
&self,
config: &ValidationConfig,
errors: &mut Vec<ValidationError>,
_: &Geometry,
geometry: &Geometry,
) {
errors.extend(
AdjacentHalfEdgesNotConnected::check(self, config).map(Into::into),
AdjacentHalfEdgesNotConnected::check(self, geometry, config)
.map(Into::into),
);
}
}

View File

@ -1,6 +1,7 @@
use fj_math::{Point, Scalar};
use crate::{
geometry::Geometry,
objects::{Cycle, HalfEdge},
storage::Handle,
validation::{validation_check::ValidationCheck, ValidationConfig},
@ -40,6 +41,7 @@ pub struct AdjacentHalfEdgesNotConnected {
impl ValidationCheck<Cycle> for AdjacentHalfEdgesNotConnected {
fn check(
object: &Cycle,
_: &Geometry,
config: &ValidationConfig,
) -> impl Iterator<Item = Self> {
object.half_edges().pairs().filter_map(|(first, second)| {
@ -87,7 +89,10 @@ mod tests {
let mut core = Core::new();
let valid = Cycle::polygon([[0., 0.], [1., 0.], [1., 1.]], &mut core);
AdjacentHalfEdgesNotConnected::check_and_return_first_error(&valid)?;
AdjacentHalfEdgesNotConnected::check_and_return_first_error(
&valid,
&core.layers.geometry,
)?;
let invalid = valid.update_half_edge(
valid.half_edges().first(),
@ -96,7 +101,10 @@ mod tests {
},
&mut core,
);
AdjacentHalfEdgesNotConnected::check_and_expect_one_error(&invalid);
AdjacentHalfEdgesNotConnected::check_and_expect_one_error(
&invalid,
&core.layers.geometry,
);
Ok(())
}

View File

@ -1,5 +1,7 @@
use std::fmt::Display;
use crate::geometry::Geometry;
use super::ValidationConfig;
/// Run a specific validation check on an object
@ -10,6 +12,7 @@ pub trait ValidationCheck<T>: Sized {
/// Run the validation check on the implementing object
fn check(
object: &T,
geometry: &Geometry,
config: &ValidationConfig,
) -> impl Iterator<Item = Self>;
@ -17,9 +20,12 @@ pub trait ValidationCheck<T>: Sized {
///
/// This method is designed for convenience over flexibility (it is intended
/// for use in unit tests), and thus always uses the default configuration.
fn check_and_return_first_error(object: &T) -> Result<(), Self> {
fn check_and_return_first_error(
object: &T,
geometry: &Geometry,
) -> Result<(), Self> {
let config = ValidationConfig::default();
let mut errors = Self::check(object, &config);
let mut errors = Self::check(object, geometry, &config);
if let Some(err) = errors.next() {
return Err(err);
@ -32,12 +38,12 @@ pub trait ValidationCheck<T>: Sized {
///
/// This method is designed for convenience over flexibility (it is intended
/// for use in unit tests), and thus always uses the default configuration.
fn check_and_expect_one_error(object: &T) -> Self
fn check_and_expect_one_error(object: &T, geometry: &Geometry) -> Self
where
Self: Display,
{
let config = ValidationConfig::default();
let mut errors = Self::check(object, &config).peekable();
let mut errors = Self::check(object, geometry, &config).peekable();
let err = errors
.next()