Interface MeXVec3dSet
- All Superinterfaces:
MiDataSet
- All Known Subinterfaces:
MeXVec3dSetI
,MeXVec3dSetIj
Extracted vector set interface.
An interface for an extracted vector set with boundaries (min and max) returned by any extract of a mesh.
-
Method Summary
Modifier and TypeMethodDescriptiondouble[]
Gets the coordinates {x,y,z} of the maximum vector of this set.double[]
Gets the coordinates {x,y,z} of the mean vector of this set.double[]
Gets the coordinates {x,y,z} of the minimum vector of this set.double[]
Gets the coordinates {x,y,z} of the standard deviation vector of this set.Methods inherited from interface com.openinventor.meshvizxlm.mesh.data.MiDataSet
getBinding, getName, getTimeStamp
-
Method Details
-
getMinVec
Gets the coordinates {x,y,z} of the minimum vector of this set.- Returns:
- the coordinates {x,y,z} of the minimum vector
- Throws:
MeEmptyDataSetException
- if extracted data set is empty.
-
getMaxVec
Gets the coordinates {x,y,z} of the maximum vector of this set.- Returns:
- the coordinates {x,y,z} of the maximum vector
- Throws:
MeEmptyDataSetException
- if extracted data set is empty.
-
getMeanVec
Gets the coordinates {x,y,z} of the mean vector of this set.- Returns:
- the coordinates {x,y,z} of the mean vector
- Throws:
MeEmptyDataSetException
- if extracted data set is empty.
-
getStandardDeviationVec
Gets the coordinates {x,y,z} of the standard deviation vector of this set.- Returns:
- the coordinates {x,y,z} of the standard deviation vector
- Throws:
MeEmptyDataSetException
- if extracted data set is empty.
-