mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-07 11:28:28 +00:00
Update doc comments
This commit is contained in:
parent
6b47590cf0
commit
473d63babf
@ -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>,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user