mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-08 11:58:27 +00:00
Re-export SweptCurve
from surfaces
This commit is contained in:
parent
e2c97bfd54
commit
3928443331
@ -4,9 +4,8 @@ use fj_math::{Circle, Line, Point};
|
||||
|
||||
use crate::{
|
||||
geometry::{
|
||||
surfaces::swept_curve::SweptCurve,
|
||||
util::tri_mesh::convert_point_surface_to_global, CurveBoundary,
|
||||
Geometry, Path, Tolerance,
|
||||
surfaces::SweptCurve, util::tri_mesh::convert_point_surface_to_global,
|
||||
CurveBoundary, Geometry, Path, Tolerance,
|
||||
},
|
||||
storage::Handle,
|
||||
topology::{Curve, Surface},
|
||||
@ -205,7 +204,7 @@ mod tests {
|
||||
circle::approx_circle, curve::approx_curve, ApproxPoint,
|
||||
},
|
||||
geometry::{
|
||||
surfaces::swept_curve::SweptCurve,
|
||||
surfaces::SweptCurve,
|
||||
util::tri_mesh::convert_point_surface_to_global, CurveBoundary,
|
||||
Path,
|
||||
},
|
||||
|
@ -4,9 +4,8 @@ use fj_math::{Aabb, Vector};
|
||||
|
||||
use crate::{
|
||||
geometry::{
|
||||
surfaces::swept_curve::SweptCurve,
|
||||
util::tri_mesh::convert_point_surface_to_global, Geometry, Path,
|
||||
Tolerance,
|
||||
surfaces::SweptCurve, util::tri_mesh::convert_point_surface_to_global,
|
||||
Geometry, Path, Tolerance,
|
||||
},
|
||||
topology::Face,
|
||||
};
|
||||
|
@ -8,8 +8,8 @@ use crate::{
|
||||
};
|
||||
|
||||
use super::{
|
||||
surfaces::swept_curve::SweptCurve, vertex::LocalVertexGeom, CurveGeom,
|
||||
CurveGeom2, LocalCurveGeom, Path, VertexGeom,
|
||||
surfaces::SweptCurve, vertex::LocalVertexGeom, CurveGeom, CurveGeom2,
|
||||
LocalCurveGeom, Path, VertexGeom,
|
||||
};
|
||||
|
||||
/// Geometric data that is associated with topological objects
|
||||
|
@ -1,3 +1,5 @@
|
||||
//! # Geometry code specific to various types of surfaces
|
||||
|
||||
pub mod swept_curve;
|
||||
|
||||
pub use self::swept_curve::SweptCurve;
|
||||
|
@ -36,7 +36,7 @@ mod tests {
|
||||
use pretty_assertions::assert_eq;
|
||||
|
||||
use crate::geometry::{
|
||||
surfaces::swept_curve::SweptCurve,
|
||||
surfaces::SweptCurve,
|
||||
util::tri_mesh::{
|
||||
convert_point_surface_to_global, convert_vector_surface_to_global,
|
||||
},
|
||||
|
@ -2,8 +2,8 @@
|
||||
|
||||
use crate::{
|
||||
geometry::{
|
||||
surfaces::swept_curve::SweptCurve, CurveGeom2, Geometry,
|
||||
LocalCurveGeom, LocalVertexGeom,
|
||||
surfaces::SweptCurve, CurveGeom2, Geometry, LocalCurveGeom,
|
||||
LocalVertexGeom,
|
||||
},
|
||||
storage::Handle,
|
||||
topology::{Curve, Surface, Vertex},
|
||||
|
@ -1,7 +1,7 @@
|
||||
use fj_math::{Point, Scalar, Vector};
|
||||
|
||||
use crate::{
|
||||
geometry::{surfaces::swept_curve::SweptCurve, Path},
|
||||
geometry::{surfaces::SweptCurve, Path},
|
||||
operations::insert::Insert,
|
||||
storage::Handle,
|
||||
topology::Surface,
|
||||
|
@ -2,7 +2,7 @@ use fj_math::{Circle, Line, Vector};
|
||||
|
||||
use crate::{
|
||||
geometry::{
|
||||
surfaces::swept_curve::SweptCurve,
|
||||
surfaces::SweptCurve,
|
||||
util::tri_mesh::{
|
||||
convert_point_surface_to_global, convert_vector_surface_to_global,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user