If you'll recall, a while back we tried to add a BestFitFroMPoints function to vtkPlane. This caused some issues with cross-library linkage. Is this big enough to make a separate class: vtkBestFitPlane (or maybe vtkLeastSquaresPlane)?<div>
<br></div><div>I noticed that there is no vtkImplicitFunctionAlgorithm, so is this usually not done?<br><div><br></div><div>I'm thinking something like:</div><div>vtkPoints* points = vtkPoints::New();</div><div>// ... fill points....</div>
<div>vtkBestFitPlane bestFitFilter = vtkBestFitPlane::New();</div><div>bestFitFilter->SetInput(points);</div><div>bestFitFilter->Update();</div><div><br></div><div>vtkPlane* bestPlane = bestFitFilter->GetOutput();</div>
<div><br></div><div>Thoughts?</div><div><br clear="all">Thanks,<br><br>David<br>
</div></div>