Update module path

This commit is contained in:
Hanno Braun 2024-10-11 18:44:57 +02:00
parent 57060be1ed
commit c961770ec0
3 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,7 @@
//! Geometry that is applied to the topological object graph //! Geometry that is applied to the topological object graph
pub mod curves; pub mod curves;
pub mod surfaces;
pub mod traits; pub mod traits;
pub mod util; pub mod util;
@ -8,7 +9,6 @@ mod boundary;
mod curve; mod curve;
mod geometry; mod geometry;
mod path; mod path;
mod surface;
mod tolerance; mod tolerance;
mod vertex; mod vertex;
@ -17,7 +17,7 @@ pub use self::{
curve::{CurveGeom, CurveGeom2, LocalCurveGeom}, curve::{CurveGeom, CurveGeom2, LocalCurveGeom},
geometry::Geometry, geometry::Geometry,
path::Path, path::Path,
surface::SweptCurve, surfaces::swept_curve::SweptCurve,
tolerance::{InvalidTolerance, Tolerance}, tolerance::{InvalidTolerance, Tolerance},
vertex::{LocalVertexGeom, VertexGeom}, vertex::{LocalVertexGeom, VertexGeom},
}; };

View File

@ -0,0 +1,3 @@
//! # Geometry code specific to various types of surfaces
pub mod swept_curve;

View File

@ -2,7 +2,7 @@
use fj_math::{Aabb, Point, Scalar, Transform, Triangle, Vector}; use fj_math::{Aabb, Point, Scalar, Transform, Triangle, Vector};
use super::{ use crate::geometry::{
traits::{GenPolyline, GenTriMesh}, traits::{GenPolyline, GenTriMesh},
Path, Tolerance, Path, Tolerance,
}; };