MCPcopy Create free account
hub / github.com/Kitware/VTK / FindPoint

Function FindPoint

Common/DataModel/vtkDataSet.h:242–249  ·  view source on GitHub ↗

@{ * Locate the closest point to the global coordinate x. Return the * point id. If point id < 0; then no point found. (This may arise * when point is outside of dataset.) * THIS METHOD IS THREAD SAFE IF FIRST CALLED FROM A SINGLE THREAD AND * THE DATASET IS NOT MODIFIED */

Source from the content-addressed store, hash-verified

240 * THE DATASET IS NOT MODIFIED
241 */
242 vtkIdType FindPoint(double x, double y, double z)
243 {
244 double xyz[3];
245 xyz[0] = x;
246 xyz[1] = y;
247 xyz[2] = z;
248 return this->FindPoint(xyz);
249 }
250 virtual vtkIdType FindPoint(double x[3]) = 0;
251 ///@}
252

Callers

nothing calls this directly

Calls 1

FindPointMethod · 0.45

Tested by

no test coverage detected