ReverseEngineering: Update UI strings for consistency
This commit is contained in:
committed by
Chris Hennes
parent
2a96b8c758
commit
da5f0f18c6
@@ -999,7 +999,7 @@ PyMOD_INIT_FUNC(ReverseEngineering)
|
||||
}
|
||||
|
||||
PyObject* mod = Reen::initModule();
|
||||
Base::Console().log("Loading ReverseEngineering module... done\n");
|
||||
Base::Console().log("Loading ReverseEngineering module… done\n");
|
||||
PyMOD_Return(mod);
|
||||
}
|
||||
// clang-format on
|
||||
|
||||
@@ -105,7 +105,7 @@ void RegionGrowing::perform(int ksearch)
|
||||
void RegionGrowing::perform(const std::vector<Base::Vector3f>& myNormals)
|
||||
{
|
||||
if (myPoints.size() != myNormals.size()) {
|
||||
throw Base::RuntimeError("Number of points doesn't match with number of normals");
|
||||
throw Base::RuntimeError("Number of points does not match with number of normals");
|
||||
}
|
||||
|
||||
pcl::PointCloud<pcl::PointXYZ>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZ>);
|
||||
|
||||
Reference in New Issue
Block a user