public static Simplex Create(int count = 0) { return(new Simplex() { Count = count, Vertices = FixedArray3 <SimplexVertex> .Create() }); }
public static SimplexCache Create() { return(new SimplexCache() { IndexA = FixedArray3 <byte> .Create(), IndexB = FixedArray3 <byte> .Create() }); }