Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move all vertex validation to the new infrastructure #1285

Merged
merged 7 commits into from
Oct 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions crates/fj-kernel/src/objects/vertex.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use fj_math::Point;
use pretty_assertions::assert_eq;

use crate::storage::Handle;

Expand Down Expand Up @@ -29,12 +28,6 @@ impl Vertex {
) -> Self {
let position = position.into();

assert_eq!(
curve.surface().id(),
surface_form.surface().id(),
"Surface form of vertex must be defined on same surface as curve",
);

Self {
position,
curve,
Expand Down
69 changes: 0 additions & 69 deletions crates/fj-kernel/src/validate/coherence.rs

This file was deleted.

98 changes: 10 additions & 88 deletions crates/fj-kernel/src/validate/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
//! Please note that not all of these validation categories are fully
//! implemented, as of this writing.

mod coherence;
mod curve;
mod cycle;
mod edge;
Expand All @@ -27,8 +26,8 @@ mod uniqueness;
mod vertex;

pub use self::{
coherence::{CoherenceIssues, VertexCoherenceMismatch},
uniqueness::UniquenessIssues,
vertex::{SurfaceVertexPositionMismatch, VertexValidationError},
};

use std::{collections::HashSet, convert::Infallible, ops::Deref};
Expand Down Expand Up @@ -94,9 +93,6 @@ where

global_vertices.insert(*global_vertex);
}
for vertex in self.vertex_iter() {
coherence::validate_vertex(vertex, config.identical_max_distance)?;
}

Ok(Validated(self))
}
Expand Down Expand Up @@ -176,17 +172,21 @@ impl<T> Deref for Validated<T> {
#[allow(clippy::large_enum_variant)]
#[derive(Debug, thiserror::Error)]
pub enum ValidationError {
/// Coherence validation failed
#[error("Coherence validation failed")]
Coherence(#[from] CoherenceIssues),

/// Geometric validation failed
#[error("Geometric validation failed")]
Geometric,

/// Uniqueness validation failed
#[error("Uniqueness validation failed")]
Uniqueness(#[from] UniquenessIssues),

/// `SurfaceVertex` position didn't match `GlobalVertex`
#[error(transparent)]
SurfaceVertexPositionMismatch(#[from] SurfaceVertexPositionMismatch),

/// `Vertex` position didn't match `SurfaceVertex`
#[error(transparent)]
Vertex(#[from] VertexValidationError),
}

impl From<Infallible> for ValidationError {
Expand All @@ -197,91 +197,13 @@ impl From<Infallible> for ValidationError {

#[cfg(test)]
mod tests {
use fj_interop::ext::ArrayExt;
use fj_math::{Point, Scalar};

use crate::{
objects::{
Curve, GlobalCurve, GlobalEdge, GlobalVertex, HalfEdge, Objects,
SurfaceVertex, Vertex,
},
partial::HasPartial,
path::SurfacePath,
objects::{GlobalVertex, Objects},
validate::{Validate, ValidationConfig, ValidationError},
};

#[test]
fn coherence_edge() -> anyhow::Result<()> {
let objects = Objects::new();

let surface = objects.surfaces.xy_plane();

let points_surface = [[0., 0.], [1., 0.]];
let points_global = [[0., 0., 0.], [1., 0., 0.]];

let curve = {
let path = SurfacePath::line_from_points(points_surface);
let global_form = objects.global_curves.insert(GlobalCurve)?;

objects.curves.insert(Curve::new(
surface.clone(),
path,
global_form,
))?
};

let vertices_global = points_global.try_map_ext(|point| {
objects
.global_vertices
.insert(GlobalVertex::from_position(point))
})?;

let [a_surface, b_surface] = points_surface
.zip_ext(vertices_global)
.try_map_ext(|(point_surface, vertex_global)| {
objects.surface_vertices.insert(SurfaceVertex::new(
point_surface,
surface.clone(),
vertex_global,
))
})?;

let deviation = Scalar::from_f64(0.25);

let a = objects.vertices.insert(Vertex::new(
Point::from([Scalar::ZERO + deviation]),
curve.clone(),
a_surface,
))?;
let b = objects.vertices.insert(Vertex::new(
Point::from([Scalar::ONE]),
curve.clone(),
b_surface,
))?;
let vertices = [a, b];

let global_edge = GlobalEdge::partial()
.from_curve_and_vertices(&curve, &vertices)
.build(&objects)?;
let half_edge = objects
.half_edges
.insert(HalfEdge::new(vertices, global_edge));

let result =
half_edge.clone().validate_with_config(&ValidationConfig {
identical_max_distance: deviation * 2.,
..ValidationConfig::default()
});
assert!(result.is_ok());

let result = half_edge.validate_with_config(&ValidationConfig {
identical_max_distance: deviation / 2.,
..ValidationConfig::default()
});
assert!(result.is_err());
Ok(())
}

#[test]
fn uniqueness_vertex() -> anyhow::Result<()> {
let objects = Objects::new();
Expand Down
Loading