mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-12 13:58:28 +00:00
Derive Debug
for CurveGeom
This commit is contained in:
parent
f8078a5331
commit
d13071bbd0
@ -5,7 +5,7 @@ use crate::{storage::Handle, topology::Surface};
|
|||||||
use super::SurfacePath;
|
use super::SurfacePath;
|
||||||
|
|
||||||
/// The geometric definition of a curve
|
/// The geometric definition of a curve
|
||||||
#[derive(Clone, Default)]
|
#[derive(Clone, Debug, Default)]
|
||||||
pub struct CurveGeom {
|
pub struct CurveGeom {
|
||||||
/// # The redundant local definitions of the curve geometry
|
/// # The redundant local definitions of the curve geometry
|
||||||
///
|
///
|
||||||
@ -42,7 +42,7 @@ impl CurveGeom {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// The geometric definition of a curve in 2D surface coordinates
|
/// The geometric definition of a curve in 2D surface coordinates
|
||||||
#[derive(Clone)]
|
#[derive(Clone, Debug)]
|
||||||
pub struct LocalCurveGeom {
|
pub struct LocalCurveGeom {
|
||||||
/// The path that defines the curve on its surface
|
/// The path that defines the curve on its surface
|
||||||
pub path: SurfacePath,
|
pub path: SurfacePath,
|
||||||
|
Loading…
Reference in New Issue
Block a user