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.
|
An interface that discribes such type of items that are points (for drawing graphs). More...
Inherited by com.spvessel.spacevil.PointsContainer.
Public Member Functions | |
void | setPointThickness (float thickness) |
Setting thickness of points. More... | |
float | getPointThickness () |
Getting points thickness. More... | |
void | setPointColor (Color color) |
Setting points color. More... | |
Color | getPointColor () |
Getting points color. More... | |
void | setPointShape (List< float[]> shape) |
Setting custom shape for points (if one want to use other shape than circle). More... | |
List< float[]> | getPointShape () |
Getting current shape of points. More... | |
List< float[]> | getPoints () |
Getting points coordinates. More... | |
void | setPoints (List< float[]> coord) |
Setting points coordinates. More... | |
An interface that discribes such type of items that are points (for drawing graphs).
Color com.spvessel.spacevil.Core.InterfacePoints.getPointColor | ( | ) |
Getting points color.
Implemented in com.spvessel.spacevil.PointsContainer.
List<float[]> com.spvessel.spacevil.Core.InterfacePoints.getPoints | ( | ) |
Getting points coordinates.
Implemented in com.spvessel.spacevil.PointsContainer.
List<float[]> com.spvessel.spacevil.Core.InterfacePoints.getPointShape | ( | ) |
Getting current shape of points.
Default: circle shape.
Implemented in com.spvessel.spacevil.PointsContainer.
float com.spvessel.spacevil.Core.InterfacePoints.getPointThickness | ( | ) |
Getting points thickness.
Implemented in com.spvessel.spacevil.PointsContainer.
void com.spvessel.spacevil.Core.InterfacePoints.setPointColor | ( | Color | color | ) |
Setting points color.
color | Points color as java.awt.Color. |
Implemented in com.spvessel.spacevil.PointsContainer.
void com.spvessel.spacevil.Core.InterfacePoints.setPoints | ( | List< float[]> | coord | ) |
Setting points coordinates.
coord | Points list as List of float[2] array. |
Implemented in com.spvessel.spacevil.PointsContainer.
void com.spvessel.spacevil.Core.InterfacePoints.setPointShape | ( | List< float[]> | shape | ) |
Setting custom shape for points (if one want to use other shape than circle).
shape | Points list of the shape as List of float[2] array. |
Implemented in com.spvessel.spacevil.PointsContainer.
void com.spvessel.spacevil.Core.InterfacePoints.setPointThickness | ( | float | thickness | ) |
Setting thickness of points.
thickness | Point thickness. |
Implemented in com.spvessel.spacevil.PointsContainer.