mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-15 17:14:39 +00:00
fix errors
This commit is contained in:
parent
522195d949
commit
1a61944ca0
@ -41,9 +41,9 @@ QList<QAction *> EditAlignFactory::actions() const
|
||||
}
|
||||
|
||||
//get the edit tool for the given action
|
||||
MeshEditInterface* EditAlignFactory::getMeshEditInterface(QAction *)
|
||||
MeshEditInterface* EditAlignFactory::getMeshEditInterface(QAction *action)
|
||||
{
|
||||
assert(action == editAlign);
|
||||
assert(action == editAlign); (void) action;
|
||||
return new EditAlignPlugin();
|
||||
}
|
||||
|
||||
|
||||
@ -58,8 +58,8 @@ void ComputeScalingMatchMatrix(Matrix44d &res,
|
||||
}
|
||||
|
||||
|
||||
double errorRotoTranslationScale(int, double *x){
|
||||
assert(n==7);
|
||||
double errorRotoTranslationScale(int n, double *x){
|
||||
assert(n==7); (void)n;
|
||||
double dist = 0;
|
||||
std::vector<Point3d>::iterator i = mov->begin();
|
||||
std::vector<Point3d>::iterator ifix = fix->begin();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user