Uses of Class
org.gephi.appearance.api.Interpolator
-
Packages that use Interpolator Package Description org.gephi.appearance.api API for manipulating element appearance. -
-
Uses of Interpolator in org.gephi.appearance.api
Subclasses of Interpolator in org.gephi.appearance.api Modifier and Type Class Description static class
Interpolator.BezierInterpolator
Bezier curve interpolator.Fields in org.gephi.appearance.api declared as Interpolator Modifier and Type Field Description static Interpolator
Interpolator. LINEAR
Linear interpolationx = interpolate(x)
static Interpolator
Interpolator. LOG2
Log2 interpolationMath.log(1 + x)/Math.log(2) = interpolate(x)
Methods in org.gephi.appearance.api that return Interpolator Modifier and Type Method Description Interpolator
RankingFunction. getInterpolator()
Returns the interpolator.static Interpolator
Interpolator. newBezierInterpolator(float px1, float py1, float px2, float py2)
Builds a bezier interpolator with two control points (px1, py1) and (px2, py2).Methods in org.gephi.appearance.api with parameters of type Interpolator Modifier and Type Method Description float
Ranking. normalize(Number value, Interpolator interpolator, Number minValue, Number maxValue)
Normalizes the given value with the interpolator.void
RankingFunction. setInterpolator(Interpolator interpolator)
Sets the interpolator for this function.
-