Пример #1
0
 public static G3D ToG3D(this BFast bfast)
 => G3D.Create(bfast);
Пример #2
0
 public static List <IGeometry> LoadGeometries(this BFast bfast)
 => bfast.Buffers
 .AsParallel().AsOrdered()
 .Select(b => G3D.Create(b).ToIGeometry())
 .ToList();
Пример #3
0
 public static G3D ReadFromFile(string filePath)
 => G3D.Create(File.ReadAllBytes(filePath));