Skip to content

Commit

Permalink
Update doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Oct 23, 2024
1 parent 6b47590 commit 473d63b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/fj-core/src/geometry/geometry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ pub struct LocalCurveGeom {
pub enum CurveGenerator {
/// # The curve is defined locally on a surface
Surface {
/// # The geometric representation of the curve
/// # A generator for local curve geometry
generator: Box<dyn GenPolyline<2>>,

/// # The surface that the curve geometry is defined on
Expand All @@ -284,7 +284,7 @@ pub enum CurveGenerator {

/// # The curve is defined globally in 3D space
Global {
/// # The geometric representation of the curve
/// # A generator for global curve geometry
generator: Box<dyn GenPolyline<3>>,
},
}
Expand All @@ -294,6 +294,6 @@ pub enum CurveGenerator {
/// Surface are represented by triangle meshes, their uniform intermediate
/// representation.
pub struct SurfaceGenerator {
/// # The geometric representation of the surface
/// # A generator for surface geometry
pub generator: Box<dyn GenTriMesh>,
}

0 comments on commit 473d63b

Please sign in to comment.