Average
Get the average of different sets of data. These methods only exist to make code more compact and readable.
Methods
of(double... numbers)
Gets the average of some numbers.
of(float... numbers)
Gets the average of some numbers.
of(int... numbers)
Gets the average of some numbers.
of(long... numbers)
Gets the average of some numbers.
of(int maxIndex, double... numbers)
Gets the average of some numbers, up to a certain index.
ofX(PointXY... points)
Gets the average of the X values of some points.
ofY(PointXY... points)
Gets the average of the Y values of some points.
ofZ(PointXYZ... points)
Gets the average of the Z values of some points.
of(PointXY... points)
Gets the average of some points.
of(PointXYZ... points)
Gets the average of some points.
of(Angle... angles)
Gets the average of some angles.
of(Translation... translations)
Gets the average of some translations.