Update function name to latest nomenclature

This commit is contained in:
Hanno Braun 2022-10-13 16:58:33 +02:00
parent 6c3abd8e83
commit b622282bd6
2 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@ impl PartialCycle {
half_edge
.with_surface(Some(surface_for_edges.clone()))
.with_from_vertex(from)
.with_back_vertex(from)
})
.into_full(objects);

View File

@ -61,7 +61,7 @@ impl PartialHalfEdge {
}
/// Update the partial half-edge with the given from vertex
pub fn with_from_vertex(
pub fn with_back_vertex(
mut self,
vertex: Option<impl Into<MaybePartial<Vertex>>>,
) -> Self {