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
14
15
16
17
use crate::{
    geometry::Geometry,
    objects::Curve,
    validation::{ValidationConfig, ValidationError},
};

use super::Validate;

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