Exemplo n.º 1
0
 public static G3D ToG3D(this BFast bfast)
 => G3D.Create(bfast);
Exemplo n.º 2
0
 public static List <IGeometry> LoadGeometries(this BFast bfast)
 => bfast.Buffers
 .AsParallel().AsOrdered()
 .Select(b => G3D.Create(b).ToIGeometry())
 .ToList();
Exemplo n.º 3
0
 public static G3D ReadFromFile(string filePath)
 => G3D.Create(File.ReadAllBytes(filePath));