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

Function vtkWarpTransformPoint

Common/Transforms/vtkWarpTransform.cxx:34–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32// as appropriate.
33template <class T>
34void vtkWarpTransformPoint(vtkWarpTransform* self, int inverse, const T input[3], T output[3])
35{
36 if (inverse)
37 {
38 self->TemplateTransformInverse(input, output);
39 }
40 else
41 {
42 self->TemplateTransformPoint(input, output);
43 }
44}
45
46void vtkWarpTransform::InternalTransformPoint(const float input[3], float output[3])
47{

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected