mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-14 06:48:26 +00:00
Add more information to SweptHalfEdge
This commit is contained in:
parent
f4f14420d9
commit
ed4210395e
@ -190,10 +190,14 @@ impl SweepHalfEdge for Handle<HalfEdge> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let face = Face::new(surface, region);
|
let face = Face::new(surface, region);
|
||||||
|
let [_, _, top_boundary, _] = boundaries;
|
||||||
|
|
||||||
SweptHalfEdge {
|
SweptHalfEdge {
|
||||||
face,
|
face,
|
||||||
top_half_edge: edge_top,
|
top_half_edge: edge_top,
|
||||||
|
top_boundary: CurveBoundary {
|
||||||
|
inner: top_boundary,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -207,4 +211,7 @@ pub struct SweptHalfEdge {
|
|||||||
|
|
||||||
/// The top half-edge of the created face
|
/// The top half-edge of the created face
|
||||||
pub top_half_edge: Handle<HalfEdge>,
|
pub top_half_edge: Handle<HalfEdge>,
|
||||||
|
|
||||||
|
/// The boundary of the top half-edge
|
||||||
|
pub top_boundary: CurveBoundary<Point<1>>,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user