Interface IBezierPriceCurve
-
- All Known Implementing Classes:
BezierPriceCurve
public interface IBezierPriceCurveDefinition of the price curve as a bezier curve.- Author:
- Andi Hotz, (c) Sahits GmbH, 2016 Created on Aug 14, 2016
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javafx.geometry.Point2DgetControlPoint1()Retrieve the first control point controlling the tangential leaving of the curve at the start.javafx.geometry.Point2DgetControlPoint2()Retrieve the second control point controlling the tangential entering into the end point.javafx.geometry.Point2DgetEnd()Get the end point for the bezier curve, where x == saturationjavafx.geometry.Point2DgetStart()Get the start point for the bezier curve, where x == 0.
-
-
-
Method Detail
-
getStart
javafx.geometry.Point2D getStart()
Get the start point for the bezier curve, where x == 0.- Returns:
- start point
-
getEnd
javafx.geometry.Point2D getEnd()
Get the end point for the bezier curve, where x == saturation- Returns:
- end point
-
getControlPoint1
javafx.geometry.Point2D getControlPoint1()
Retrieve the first control point controlling the tangential leaving of the curve at the start.- Returns:
- first control point
-
getControlPoint2
javafx.geometry.Point2D getControlPoint2()
Retrieve the second control point controlling the tangential entering into the end point.- Returns:
- second control point
-
-