ae v0.0.3053 (2021-06-01T17:26:23Z)
Home
Dub
Repo
Circle
ae
utils
geometry
Circle on a plane.
struct
Circle (
T
) {
T
x
;
T
y
;
T
r
;
T
diameter
[@property getter];
void
translate
(T dx, T dy);
Point
!
T
getCenter
();
}
Members
Functions
getCenter
Point
!
T
getCenter
()
Undocumented in source. Be warned that the author may not have intended to support it.
translate
void
translate
(T dx, T dy)
Undocumented in source. Be warned that the author may not have intended to support it.
Properties
diameter
T
diameter
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
r
T
r
;
The coordinates and radius.
x
T
x
;
y
T
y
;
The coordinates and radius.
Meta
Source
See Implementation
ae
utils
geometry
enums
ShapeKind
functions
circle
dist
dist2
intersects
point
rect
shape
sqrtx
manifest constants
TAU
structs
Circle
Point
Rect
Shape
Circle on a plane.