示例#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));