Interface MeXVec3dSet

All Superinterfaces:
MiDataSet
All Known Subinterfaces:
MeXVec3dSetI, MeXVec3dSetIj

public interface MeXVec3dSet extends MiDataSet
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 Type
    Method
    Description
    double[]
    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

      double[] getMinVec() throws MeEmptyDataSetException
      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

      double[] getMaxVec() throws MeEmptyDataSetException
      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

      double[] getMeanVec() throws MeEmptyDataSetException
      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

      double[] getStandardDeviationVec() throws MeEmptyDataSetException
      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.