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.
com.spvessel.spacevil.Core.InterfacePoints Interface Reference

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...
 

Detailed Description

An interface that discribes such type of items that are points (for drawing graphs).

Member Function Documentation

◆ getPointColor()

Color com.spvessel.spacevil.Core.InterfacePoints.getPointColor ( )

Getting points color.

Returns
Points color as java.awt.Color.

Implemented in com.spvessel.spacevil.PointsContainer.

◆ getPoints()

List<float[]> com.spvessel.spacevil.Core.InterfacePoints.getPoints ( )

Getting points coordinates.

Returns
Points list as List of float[2] array.

Implemented in com.spvessel.spacevil.PointsContainer.

◆ getPointShape()

List<float[]> com.spvessel.spacevil.Core.InterfacePoints.getPointShape ( )

Getting current shape of points.

Default: circle shape.

Returns
Points list of the shape as List of float[2] array.

Implemented in com.spvessel.spacevil.PointsContainer.

◆ getPointThickness()

float com.spvessel.spacevil.Core.InterfacePoints.getPointThickness ( )

Getting points thickness.

Returns
Point thickness.

Implemented in com.spvessel.spacevil.PointsContainer.

◆ setPointColor()

void com.spvessel.spacevil.Core.InterfacePoints.setPointColor ( Color  color)

Setting points color.

Parameters
colorPoints color as java.awt.Color.

Implemented in com.spvessel.spacevil.PointsContainer.

◆ setPoints()

void com.spvessel.spacevil.Core.InterfacePoints.setPoints ( List< float[]>  coord)

Setting points coordinates.

Parameters
coordPoints list as List of float[2] array.

Implemented in com.spvessel.spacevil.PointsContainer.

◆ setPointShape()

void com.spvessel.spacevil.Core.InterfacePoints.setPointShape ( List< float[]>  shape)

Setting custom shape for points (if one want to use other shape than circle).

Parameters
shapePoints list of the shape as List of float[2] array.

Implemented in com.spvessel.spacevil.PointsContainer.

◆ setPointThickness()

void com.spvessel.spacevil.Core.InterfacePoints.setPointThickness ( float  thickness)

Setting thickness of points.

Parameters
thicknessPoint thickness.

Implemented in com.spvessel.spacevil.PointsContainer.


The documentation for this interface was generated from the following file: