FPoint.this - multiple declarations
Function FPoint.this
Constructs a dsdl2
from a vanilla SDL_FPoint
from bindbc-sdl
ref this
(
sdl .rect .SDL_FPoint sdlFPoint
) @safe;
Parameters
Name | Description |
---|---|
sdlFPoint | the dsdl2 struct |
Function FPoint.this
Constructs a dsdl2
by feeding in an x
and y
pair
ref this
(
float x,
float y
) @safe;
Parameters
Name | Description |
---|---|
x | x coordinate point |
y | y coordinate point |
Function FPoint.this
Constructs a dsdl2
by feeding in an array of x
and y
ref this
(
float[2] xy
) @safe;
Parameters
Name | Description |
---|---|
xy | x and y coordinate point array |
Function FPoint.this
Constructs a dsdl2
from a dsdl2
Parameters
Name | Description |
---|---|
point | dsdl2 whose attributes are to be copied |