Skip to content

Commit

Permalink
add PartIndexRange to octree nodes (wip)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanmaierhofer committed Oct 10, 2023
1 parent 1eeef3c commit e77c08f
Show file tree
Hide file tree
Showing 4 changed files with 164 additions and 150 deletions.
2 changes: 1 addition & 1 deletion src/Aardvark.Algodat.Tests/ChunkTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public void Chunk_MismatchingNumberOfColorsFails3()
[Test]
public void Chunk_EmptyColors()
{
new Chunk(new[] { new V3d(1, 2, 3), new V3d(4, 5, 6) });
_ = new Chunk(new[] { new V3d(1, 2, 3), new V3d(4, 5, 6) });
}

[Test]
Expand Down
14 changes: 7 additions & 7 deletions src/Aardvark.Algodat.Tests/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1748,13 +1748,13 @@ internal static void TestFilterSerialization()

internal static void Test_Import_Regression()
{
//var filenames = new[]
//{
// @"W:\Datasets\Vgm\Data\E57\JBs_Haus.e57",
// //@"W:\Datasets\pointclouds\tests\JB_Haus_2022_KG.e57"
//};
var filenames = new[]
{
//@"W:\Datasets\Vgm\Data\E57\JBs_Haus.e57",
@"W:\Datasets\pointclouds\tests\JB_Haus_2022_KG.e57"
};

var filenames = Directory.GetFiles(@"W:\Datasets\pointclouds\tests");
//var filenames = Directory.GetFiles(@"W:\Datasets\pointclouds\tests");

//filenames = Directory
// .EnumerateFiles(@"W:\Datasets\plytest", "*.ply", SearchOption.AllDirectories)
Expand Down Expand Up @@ -1796,7 +1796,7 @@ internal static void Test_Import_Regression()
.WithMinDist(0)
.WithNormalizePointDensityGlobal(false)
//.WithProgressCallback(p => { Report.Line($"{p:0.00}"); })
.WithEnabledPartIndices(false)
//.WithEnabledPartIndices(false)
;

var pcl = PointCloud
Expand Down
Loading

0 comments on commit e77c08f

Please sign in to comment.