Source set: Common
public data class RelativeArcTo(
public val horizontalEllipseRadius: Float,
public val verticalEllipseRadius: Float,
public val theta: Float,
public val isMoreThanHalf: Boolean,
public val isPositiveArc: Boolean,
public val arcStartDx: Float,
public val arcStartDy: Float,
) : PathNode()
Draws an elliptical arc from the current point to a new point using relative coordinates. Corresponds to the a path data command.
Parameters
| horizontalEllipseRadius | The radius of the ellipse on the x-axis. |
| verticalEllipseRadius | The radius of the ellipse on the y-axis. |
| theta | The rotation angle of the ellipse in degrees. |
| isMoreThanHalf | If true, the larger of the two possible arcs is chosen. |
| isPositiveArc | If true, the arc is drawn in a "positive-angle" direction. |
| arcStartDx | The relative x-offset of the arc's end point. |
| arcStartDy | The relative y-offset of the arc's end point. |