pub structs
This commit is contained in:
parent
3cededdc61
commit
7d02217d5d
1 changed files with 2 additions and 2 deletions
|
|
@ -8,10 +8,10 @@ use std::collections::{HashMap, HashSet};
|
|||
use std::sync::{Arc, Mutex};
|
||||
|
||||
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq)]
|
||||
struct Edge(usize, usize);
|
||||
pub struct Edge(usize, usize);
|
||||
|
||||
#[derive(Debug)]
|
||||
struct TriangleData {
|
||||
pub struct TriangleData {
|
||||
index: usize,
|
||||
area: Option<f32>,
|
||||
terminal_edge: Option<Edge>,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue