fj-core 0.49.0

Early-stage b-rep CAD kernel.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::{geometry::Geometry, objects::Vertex};

use super::{Validate, ValidationConfig, ValidationError};

impl Validate for Vertex {
    fn validate(
        &self,
        _: &ValidationConfig,
        _: &mut Vec<ValidationError>,
        _: &Geometry,
    ) {
    }
}