mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-12 22:08:29 +00:00
Update module path
This commit is contained in:
parent
57060be1ed
commit
c961770ec0
@ -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},
|
||||||
};
|
};
|
||||||
|
3
crates/fj-core/src/geometry/surfaces/mod.rs
Normal file
3
crates/fj-core/src/geometry/surfaces/mod.rs
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
//! # Geometry code specific to various types of surfaces
|
||||||
|
|
||||||
|
pub mod swept_curve;
|
@ -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,
|
||||||
};
|
};
|
Loading…
Reference in New Issue
Block a user