pub fn triangles_adjacent_to_triangle(
    t: usize,
    delaunay: &Triangulation
) -> Vec<usize>
Expand description

Returns a vec containing the indices for the adjacent triangles of the given triangle

Arguments

  • t - The triangle index
  • delaunay - A reference to a fully constructed Triangulation