Package org.jzy3d.maths
Class Scale
- java.lang.Object
-
- org.jzy3d.maths.Scale
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Scaleadd(float value)Scaleclone()booleancontains(float value)static Scaleenlarge(Scale input, float ratio)voidenlargeSelf(double ratio)floatgetMax()floatgetMin()floatgetRange()booleanisIn(float value)booleanisIn(float value, boolean includingMin, boolean includingMax)booleanisMaxNan()booleanisMinNan()voidsetMax(float max)voidsetMin(float min)static Scalethinest(Scale scale1, Scale scale2)StringtoString()booleanvalid()static Scalewidest(Scale scale1, Scale scale2)
-
-
-
Method Detail
-
getMin
public float getMin()
-
getMax
public float getMax()
-
getRange
public float getRange()
-
setMin
public void setMin(float min)
-
setMax
public void setMax(float max)
-
add
public Scale add(float value)
-
contains
public boolean contains(float value)
-
isMaxNan
public boolean isMaxNan()
-
isMinNan
public boolean isMinNan()
-
isIn
public boolean isIn(float value)
-
isIn
public boolean isIn(float value, boolean includingMin, boolean includingMax)
-
valid
public boolean valid()
-
enlargeSelf
public void enlargeSelf(double ratio)
-
-