mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-05 10:28:27 +00:00
Read vertex geometry in SweepHalfEdge
This commit is contained in:
parent
e96f66c17e
commit
972895707e
@ -59,7 +59,22 @@ impl SweepHalfEdge for Handle<HalfEdge> {
|
||||
) -> SweptHalfEdge {
|
||||
let path = path.into();
|
||||
|
||||
let boundary = core.layers.geometry.of_half_edge(self).boundary.inner;
|
||||
let boundary = [
|
||||
core.layers
|
||||
.geometry
|
||||
.of_vertex(self.start_vertex())
|
||||
.unwrap()
|
||||
.local_on(self.curve())
|
||||
.unwrap()
|
||||
.position,
|
||||
core.layers
|
||||
.geometry
|
||||
.of_vertex(&end_vertex)
|
||||
.unwrap()
|
||||
.local_on(self.curve())
|
||||
.unwrap()
|
||||
.position,
|
||||
];
|
||||
let curve_geom = core
|
||||
.layers
|
||||
.geometry
|
||||
|
Loading…
Reference in New Issue
Block a user