diff --git a/src/lib.rs b/src/lib.rs index e221d37..dbf0ce0 100755 --- a/src/lib.rs +++ b/src/lib.rs @@ -1750,8 +1750,8 @@ impl Triangulation { } } - /// Set/update the z-value for a given vertex - pub fn set_vertex_z_value(&mut self, vi: usize, z: f64) -> Result { + /// Update/set the z-value for a given vertex + pub fn update_vertex_z_value(&mut self, vi: usize, z: f64) -> Result { if vi == 0 { return Ok(false); }