PathNode.ArcTo
-
Cmn
data class PathNode.ArcTo : PathNode
| kotlin.Any | ||
| ↳ | androidx.compose.ui.graphics.vector.PathNode | |
| ↳ | androidx.compose.ui.graphics.vector.PathNode.ArcTo |
Draws an elliptical arc from the current point to a new point using absolute coordinates. Corresponds to the A path data command.
Summary
Public constructors |
|
|---|---|
|
Cmn
|
Public properties |
||
|---|---|---|
Float |
The absolute x-coordinate of the arc's end point. |
Cmn
|
Float |
The absolute y-coordinate of the arc's end point. |
Cmn
|
Float |
The radius of the ellipse on the x-axis. |
Cmn
|
Boolean |
If |
Cmn
|
Boolean |
If |
Cmn
|
Float |
The rotation angle of the ellipse in degrees. |
Cmn
|
Float |
The radius of the ellipse on the y-axis. |
Cmn
|
Inherited properties |
|---|
Public constructors
ArcTo
ArcTo(
horizontalEllipseRadius: Float,
verticalEllipseRadius: Float,
theta: Float,
isMoreThanHalf: Boolean,
isPositiveArc: Boolean,
arcStartX: Float,
arcStartY: Float
)
| Parameters | |
|---|---|
horizontalEllipseRadius: Float |
The radius of the ellipse on the x-axis. |
verticalEllipseRadius: Float |
The radius of the ellipse on the y-axis. |
theta: Float |
The rotation angle of the ellipse in degrees. |
isMoreThanHalf: Boolean |
If |
isPositiveArc: Boolean |
If |
arcStartX: Float |
The absolute x-coordinate of the arc's end point. |
arcStartY: Float |
The absolute y-coordinate of the arc's end point. |