Update doc comments

This commit is contained in:
Hanno Braun 2024-10-23 19:59:13 +02:00
parent 6b47590cf0
commit 473d63babf

View File

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