コード例 #1
0
ファイル: G3DExtensions.cs プロジェクト: vimaec/ara3d-dev
 public static G3D ToG3D(this BFast bfast)
 => G3D.Create(bfast);
コード例 #2
0
ファイル: GeometryReader.cs プロジェクト: vimaec/ara3d-dev
 public static List <IGeometry> LoadGeometries(this BFast bfast)
 => bfast.Buffers
 .AsParallel().AsOrdered()
 .Select(b => G3D.Create(b).ToIGeometry())
 .ToList();
コード例 #3
0
ファイル: G3DExtensions.cs プロジェクト: vimaec/ara3d-dev
 public static G3D ReadFromFile(string filePath)
 => G3D.Create(File.ReadAllBytes(filePath));