74 |
@rtype: Two column tuple containing numbers |
@rtype: Two column tuple containing numbers |
75 |
@return: Scalar range |
@return: Scalar range |
76 |
""" |
""" |
77 |
|
|
78 |
|
#self._getOutput().GetPointData().SetActiveScalars("temp") |
79 |
return self._getOutput().GetPointData().GetScalars().GetRange(-1) |
return self._getOutput().GetPointData().GetScalars().GetRange(-1) |
80 |
|
|
81 |
def _getVectorRange(self): |
def _getVectorRange(self): |
93 |
# to return incorrect mimimum vector although the maximum vector is |
# to return incorrect mimimum vector although the maximum vector is |
94 |
# correct. As a result, the mimimum vector has been hard coded to 0.0 |
# correct. As a result, the mimimum vector has been hard coded to 0.0 |
95 |
# to accommodate those incorrect cases. |
# to accommodate those incorrect cases. |
96 |
|
|
97 |
return (0.0, vector_range[1]) |
return (0.0, vector_range[1]) |
98 |
|
|
99 |
def _getTensorRange(self): |
def _getTensorRange(self): |