Пример #1
0
 public static Simplex Create(int count = 0)
 {
     return(new Simplex()
     {
         Count = count,
         Vertices = FixedArray3 <SimplexVertex> .Create()
     });
 }
Пример #2
0
 public static SimplexCache Create()
 {
     return(new SimplexCache()
     {
         IndexA = FixedArray3 <byte> .Create(),
         IndexB = FixedArray3 <byte> .Create()
     });
 }