Update name of function

This commit is contained in:
Hanno Braun 2025-02-25 12:12:52 +01:00
parent 368364e53a
commit e8c7a793d1
2 changed files with 3 additions and 3 deletions

View File

@ -33,8 +33,8 @@ impl ConnectExt for Handle<Face> {
);
let side_faces = self
.start_and_end_vertices()
.zip(other.start_and_end_vertices())
.half_edges_with_end_vertex()
.zip(other.half_edges_with_end_vertex())
.map(|([q, r], [t, s])| {
let surface =
Plane::from_points([q, r, s].map(|vertex| vertex.point));

View File

@ -28,7 +28,7 @@ impl Face {
}
}
pub fn start_and_end_vertices(
pub fn half_edges_with_end_vertex(
&self,
) -> impl Iterator<Item = [&Handle<Vertex>; 2]> {
self.half_edges