FPoint.this - multiple declarations
Function FPoint.this
Constructs a dsdl from a vanilla SDL_FPoint from bindbc-sdl
ref this
(
sdl .rect .SDL_FPoint sdlFPoint
) @safe;
Parameters
| Name | Description |
|---|---|
| sdlFPoint | the dsdl struct |
Function FPoint.this
Constructs a dsdl 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 dsdl 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 dsdl from a dsdl
Parameters
| Name | Description |
|---|---|
| point | dsdl whose attributes are to be copied |