mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-04 01:48:28 +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
|
||||
|
||||
pub mod curves;
|
||||
pub mod surfaces;
|
||||
pub mod traits;
|
||||
pub mod util;
|
||||
|
||||
@ -8,7 +9,6 @@ mod boundary;
|
||||
mod curve;
|
||||
mod geometry;
|
||||
mod path;
|
||||
mod surface;
|
||||
mod tolerance;
|
||||
mod vertex;
|
||||
|
||||
@ -17,7 +17,7 @@ pub use self::{
|
||||
curve::{CurveGeom, CurveGeom2, LocalCurveGeom},
|
||||
geometry::Geometry,
|
||||
path::Path,
|
||||
surface::SweptCurve,
|
||||
surfaces::swept_curve::SweptCurve,
|
||||
tolerance::{InvalidTolerance, Tolerance},
|
||||
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 super::{
|
||||
use crate::geometry::{
|
||||
traits::{GenPolyline, GenTriMesh},
|
||||
Path, Tolerance,
|
||||
};
|
Loading…
Reference in New Issue
Block a user