Skip to content

Commit 69f3478

Browse files
committed
ADD-CAP: working convertions
1 parent 92b5994 commit 69f3478

23 files changed

+870
-253
lines changed

assets/icon_pool/cloud2.png

10.5 KB
Loading

assets/icon_pool/cloud2.xcf

4.77 KB
Binary file not shown.
83.6 KB
Loading
88 KB
Loading
74.3 KB
Loading
136 KB
Loading
176 KB
Loading
108 KB
Loading

src/diffCheck/geometry/DFMesh.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ namespace diffCheck::geometry
5555
return O3DTriangleMesh;
5656
}
5757

58-
std::shared_ptr<diffCheck::geometry::DFPointCloud> DFMesh::SamplePointsUniformly(int numPoints)
58+
std::shared_ptr<diffCheck::geometry::DFPointCloud> DFMesh::SampleCloudUniform(int numPoints)
5959
{
6060
auto O3DTriangleMesh = this->Cvt2O3DTriangleMesh();
6161
auto O3DPointCloud = O3DTriangleMesh->SamplePointsUniformly(numPoints);

src/diffCheck/geometry/DFMesh.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ namespace diffCheck::geometry
5252
* @param numPoints the number of points to sample
5353
* @return std::shared_ptr<geometry::DFPointCloud> the sampled point cloud
5454
*/
55-
std::shared_ptr<diffCheck::geometry::DFPointCloud> SamplePointsUniformly(int numPoints = 1000);
55+
std::shared_ptr<diffCheck::geometry::DFPointCloud> SampleCloudUniform(int numPoints = 1000);
5656

5757
public: ///< Transformers
5858
/**

0 commit comments

Comments
 (0)