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.
|
Figure class represents any triangulated shape. More...
Public Member Functions | |
List< float[]> | getFigure () |
Getting list of pairs - [x, y] coordinates of a shape. More... | |
boolean | isFixed () |
Is Figure fixed. More... | |
Figure (boolean isFixed, List< float[]> triangles) | |
Constructs a Figure with specified triangles and specified fixed flag. More... | |
Figure (List< float[]> triangles) | |
Constructs a Figure with specified triangles. More... | |
List< float[]> | updatePosition (int x, int y) |
Updating the coordinates of triangles with specified shifts along the X and Y axis. More... | |
Figure class represents any triangulated shape.
It is used to draw any types of custom shapes.
com.spvessel.spacevil.Decorations.Figure.Figure | ( | boolean | isFixed, |
List< float[]> | triangles | ||
) |
com.spvessel.spacevil.Decorations.Figure.Figure | ( | List< float[]> | triangles | ) |
List<float[]> com.spvessel.spacevil.Decorations.Figure.getFigure | ( | ) |
Getting list of pairs - [x, y] coordinates of a shape.
boolean com.spvessel.spacevil.Decorations.Figure.isFixed | ( | ) |
Is Figure fixed.
List<float[]> com.spvessel.spacevil.Decorations.Figure.updatePosition | ( | int | x, |
int | y | ||
) |
Updating the coordinates of triangles with specified shifts along the X and Y axis.
x | Shift by X-axis. |
y | Shift by Y-axis. |