Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion iTriangle/src/advanced/delaunay.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,12 @@ pub struct IntDelaunay<I: IntNumber> {
}

impl<I: IntNumber> IntDelaunay<I> {
/// Converts a Delaunay triangulation into an int triangle mesh.
///
/// # Returns
/// A new [`RawIntTriangulation`] with the same triangles.
#[inline]
pub(crate) fn into_raw(self) -> RawIntTriangulation<I> {
pub fn into_raw(self) -> RawIntTriangulation<I> {
RawIntTriangulation {
triangles: self.triangles,
points: self.points,
Expand Down
Loading