Reference for JVM version of SpaceVIL
0.3.5.8
SpaceVIL (Space of Visual Items Layout) is a cross-platform and multilingual framework for creating GUI client applications for .NET Standard, .NET Core and JVM. SpaceVIL is based on OpenGL graphic technology and GLFW. Using this framework in conjunction with .Net Core or with a JVM, you can work and create graphical client applications on Linux, Mac OS X and Windows.
|
Position is a class representing the location of a 2D coordinate integer point. More...
Inherits com.spvessel.spacevil.Core.InterfacePosition.
Public Member Functions | |
Position () | |
Default Position constructor. More... | |
Position (int x, int y) | |
Position constructor with specified X and Y coordinates. More... | |
void | setX (int x) |
Setting X position of the 2D point. More... | |
int | getX () |
Getting X position of the 2D point. More... | |
void | setY (int y) |
Setting Y position of the 2D point. More... | |
int | getY () |
Getting Y position of the 2D point. More... | |
void | setPosition (int x, int y) |
Setting 2D point position. More... | |
Position is a class representing the location of a 2D coordinate integer point.
com.spvessel.spacevil.Core.Position.Position | ( | ) |
Default Position constructor.
com.spvessel.spacevil.Core.Position.Position | ( | int | x, |
int | y | ||
) |
Position constructor with specified X and Y coordinates.
x | X position of the 2D point. |
y | Y position of the 2D point. |
int com.spvessel.spacevil.Core.Position.getX | ( | ) |
Getting X position of the 2D point.
Implements com.spvessel.spacevil.Core.InterfacePosition.
int com.spvessel.spacevil.Core.Position.getY | ( | ) |
Getting Y position of the 2D point.
Implements com.spvessel.spacevil.Core.InterfacePosition.
void com.spvessel.spacevil.Core.Position.setPosition | ( | int | x, |
int | y | ||
) |
Setting 2D point position.
x | X position of the 2D point. |
y | Y position of the 2D point. |
void com.spvessel.spacevil.Core.Position.setX | ( | int | x | ) |
Setting X position of the 2D point.
x | X position of the 2D point. |
Implements com.spvessel.spacevil.Core.InterfacePosition.
void com.spvessel.spacevil.Core.Position.setY | ( | int | y | ) |
Setting Y position of the 2D point.
y | Y position of the 2D point. |
Implements com.spvessel.spacevil.Core.InterfacePosition.