Re-export SweptCurve from surfaces

This commit is contained in:
Hanno Braun 2024-10-11 18:53:36 +02:00
parent e2c97bfd54
commit 3928443331
8 changed files with 14 additions and 14 deletions

View File

@ -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,
},

View File

@ -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,
};

View File

@ -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

View File

@ -1,3 +1,5 @@
//! # Geometry code specific to various types of surfaces
pub mod swept_curve;
pub use self::swept_curve::SweptCurve;

View File

@ -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,
},

View File

@ -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},

View File

@ -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,

View File

@ -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,
},