dplug ~master (2024-09-30T22:25:31Z)
Home
Dub
Repo
Canvas.arc
dplug
canvas
Canvas
Adds an arc to the current path (used to create circles, or parts of circles).
void
arc
(float x, float y, float radius, float startAngle, float endAngle, bool anticlockwise)
void
arc
(vec2f center, float radius, float startAngle, float endAngle, bool anticlockwise)
struct
Canvas
nothrow @
nogc
void
arc
(
vec2f
center
,
float
radius
,
float
startAngle
,
float
endAngle
,
bool
anticlockwise
= false
)
Meta
Source
See Implementation
dplug
canvas
Canvas
aliases
getTransform
destructors
~this
functions
arc
beginPath
bezierCurveTo
closePath
createCircularGradient
createEllipticalGradient
createLinearGradient
currentTransform
fill
fillCircle
fillRect
fillRule
fillStyle
globalCompositeOperation
initialize
lineTo
moveTo
quadraticCurveTo
rect
resetTransform
restore
rotate
save
scale
setTransform
transform
translate
postblits
this(this)
Adds an arc to the current path (used to create circles, or parts of circles).