toggle menu
kilua-project
0.0.15
common
switch theme
search in API
kilua-dom
/
web.dom
/
CanvasPath
Canvas
Path
interface
CanvasPath
:
JsAny
Inheritors
CanvasRenderingContext2D
Path2D
Members
Functions
arc
Link copied to clipboard
abstract
fun
arc
(
x
:
Double
,
y
:
Double
,
radius
:
Double
,
startAngle
:
Double
,
endAngle
:
Double
,
anticlockwise
:
Boolean
)
arc
To
Link copied to clipboard
abstract
fun
arcTo
(
x1
:
Double
,
y1
:
Double
,
x2
:
Double
,
y2
:
Double
,
radius
:
Double
)
abstract
fun
arcTo
(
x1
:
Double
,
y1
:
Double
,
x2
:
Double
,
y2
:
Double
,
radiusX
:
Double
,
radiusY
:
Double
,
rotation
:
Double
)
bezier
Curve
To
Link copied to clipboard
abstract
fun
bezierCurveTo
(
cp1x
:
Double
,
cp1y
:
Double
,
cp2x
:
Double
,
cp2y
:
Double
,
x
:
Double
,
y
:
Double
)
close
Path
Link copied to clipboard
abstract
fun
closePath
(
)
ellipse
Link copied to clipboard
abstract
fun
ellipse
(
x
:
Double
,
y
:
Double
,
radiusX
:
Double
,
radiusY
:
Double
,
rotation
:
Double
,
startAngle
:
Double
,
endAngle
:
Double
,
anticlockwise
:
Boolean
)
line
To
Link copied to clipboard
abstract
fun
lineTo
(
x
:
Double
,
y
:
Double
)
move
To
Link copied to clipboard
abstract
fun
moveTo
(
x
:
Double
,
y
:
Double
)
quadratic
Curve
To
Link copied to clipboard
abstract
fun
quadraticCurveTo
(
cpx
:
Double
,
cpy
:
Double
,
x
:
Double
,
y
:
Double
)
rect
Link copied to clipboard
abstract
fun
rect
(
x
:
Double
,
y
:
Double
,
w
:
Double
,
h
:
Double
)