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

Method GetMinimumT

Rendering/Core/vtkTupleInterpolator.cxx:68–84  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

66
67//------------------------------------------------------------------------------
68double vtkTupleInterpolator::GetMinimumT()
69{
70 if (this->Spline)
71 {
72 double range[2];
73 this->Spline[0]->GetParametricRange(range);
74 return range[0];
75 }
76 else if (this->Linear)
77 {
78 return this->Linear[0]->GetRange()[0];
79 }
80 else
81 {
82 return 0.0;
83 }
84}
85
86//------------------------------------------------------------------------------
87double vtkTupleInterpolator::GetMaximumT()

Callers 2

animateFunction · 0.45
animateFunction · 0.45

Calls 2

GetParametricRangeMethod · 0.80
GetRangeMethod · 0.45

Tested by 2

animateFunction · 0.36
animateFunction · 0.36