Class PathElement2d.QuadPathElement2d
- java.lang.Object
-
- org.arakhne.afc.math.geometry.d2.d.PathElement2d
-
- org.arakhne.afc.math.geometry.d2.d.PathElement2d.QuadPathElement2d
-
- All Implemented Interfaces:
Serializable,Cloneable,PathElement2afp,PathElement2D
- Enclosing class:
- PathElement2d
static class PathElement2d.QuadPathElement2d extends PathElement2d
An element of the path that represents aQUAD_TO.- Since:
- 13.0
- Version:
- 17.0 2020-01-04 14:41:43
- Author:
- Stéphane GALLAND
- Maven Group Id:
- org.arakhne.afc.core
- Maven Artifact Id:
- mathgeom
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.arakhne.afc.math.geometry.d2.d.PathElement2d
PathElement2d.ArcPathElement2d, PathElement2d.ClosePathElement2d, PathElement2d.CurvePathElement2d, PathElement2d.LinePathElement2d, PathElement2d.MovePathElement2d, PathElement2d.QuadPathElement2d
-
-
Field Summary
-
Fields inherited from class org.arakhne.afc.math.geometry.d2.d.PathElement2d
toX, toY, type
-
-
Constructor Summary
Constructors Constructor Description QuadPathElement2d(double fromx, double fromy, double ctrlx, double ctrly, double tox, double toy)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)doublegetCtrlX1()Replies the x coordinate of the first control point.doublegetCtrlY1()Replies the y coordinate of the first control point.doublegetFromX()Replies the x coordinate of the starting point.doublegetFromY()Replies the y coordinate of the starting point.inthashCode()booleanisDrawable()Replies if the element is not empty and is drawable.booleanisEmpty()Replies if the element is empty, ie. the points are the same.double[]toArray()Copy the coords into an array, except the source point.voidtoArray(double[] array)Copy the coords into the given array, except the source point.voidtoArray(int[] array)Copy the coords into the given array, except the source point.-
Methods inherited from class org.arakhne.afc.math.geometry.d2.d.PathElement2d
getCtrlX2, getCtrlY2, getLargeArcFlag, getRadiusX, getRadiusY, getRotationX, getSweepFlag, getToX, getToY, getType, toString
-
-
-
-
Constructor Detail
-
QuadPathElement2d
QuadPathElement2d(double fromx, double fromy, double ctrlx, double ctrly, double tox, double toy)Constructor.- Parameters:
fromx- x coordinate of the origin point.fromy- y coordinate of the origin point.ctrlx- x coordinate of the control point.ctrly- y coordinate of the control point.tox- x coordinate of the target point.toy- y coordinate of the target point.
-
-
Method Detail
-
equals
@Pure public boolean equals(Object obj)
- Specified by:
equalsin classPathElement2d
-
hashCode
@Pure public int hashCode()
- Specified by:
hashCodein classPathElement2d
-
isEmpty
@Pure public boolean isEmpty()
Description copied from interface:PathElement2DReplies if the element is empty, ie. the points are the same.- Returns:
trueif the points are the same; otherwisefalse.
-
isDrawable
@Pure public boolean isDrawable()
Description copied from interface:PathElement2DReplies if the element is not empty and is drawable.Only the path elements that may produce pixels on the screen must reply
truein this function.- Returns:
trueif the path element is drawable; otherwisefalse.
-
toArray
public void toArray(int[] array)
Description copied from interface:PathElement2afpCopy the coords into the given array, except the source point.- Parameters:
array- the output array.
-
toArray
public void toArray(double[] array)
Description copied from interface:PathElement2afpCopy the coords into the given array, except the source point.- Parameters:
array- the output array.
-
toArray
@Pure public double[] toArray()
Description copied from class:PathElement2dCopy the coords into an array, except the source point.- Specified by:
toArrayin classPathElement2d- Returns:
- the array of the points, except the source point.
-
getFromX
public double getFromX()
Description copied from interface:PathElement2afpReplies the x coordinate of the starting point.- Returns:
- the x coordinate, or
0if the type isPathElementType.MOVE_TO.
-
getFromY
public double getFromY()
Description copied from interface:PathElement2afpReplies the y coordinate of the starting point.- Returns:
- the y coordinate, or
0if the type isPathElementType.MOVE_TO.
-
getCtrlX1
public double getCtrlX1()
Description copied from interface:PathElement2afpReplies the x coordinate of the first control point.- Specified by:
getCtrlX1in interfacePathElement2afp- Overrides:
getCtrlX1in classPathElement2d- Returns:
- the x coordinate, or
0if the type isPathElementType.MOVE_TO,PathElementType.LINE_TO, orPathElementType.CLOSE.
-
getCtrlY1
public double getCtrlY1()
Description copied from interface:PathElement2afpReplies the y coordinate of the first control point.- Specified by:
getCtrlY1in interfacePathElement2afp- Overrides:
getCtrlY1in classPathElement2d- Returns:
- the y coordinate, or
0if the type isPathElementType.MOVE_TO,PathElementType.LINE_TO, orPathElementType.CLOSE.
-
-