Reference for .Net 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.
SpaceVIL.Core.IPoints Interface Reference

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

Inherited by 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. Default: circle shape. 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 SpaceVIL.Core.IPoints.GetPointColor ( )

Getting points color.

Returns
Points color as System.Drawing.Color.

Implemented in SpaceVIL.PointsContainer.

◆ GetPoints()

List<float[]> SpaceVIL.Core.IPoints.GetPoints ( )

Getting points coordinates.

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

Implemented in SpaceVIL.PointsContainer.

◆ GetPointShape()

List<float[]> SpaceVIL.Core.IPoints.GetPointShape ( )

Getting current shape of points. Default: circle shape.

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

Implemented in SpaceVIL.PointsContainer.

◆ GetPointThickness()

float SpaceVIL.Core.IPoints.GetPointThickness ( )

Getting points thickness.

Returns
Point thickness.

Implemented in SpaceVIL.PointsContainer.

◆ SetPointColor()

void SpaceVIL.Core.IPoints.SetPointColor ( Color  color)

Setting points color.

Parameters
colorPoints color as System.Drawing.Color.

Implemented in SpaceVIL.PointsContainer.

◆ SetPoints()

void SpaceVIL.Core.IPoints.SetPoints ( List< float[]>  coord)

Setting points coordinates.

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

Implemented in SpaceVIL.PointsContainer.

◆ SetPointShape()

void SpaceVIL.Core.IPoints.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 SpaceVIL.PointsContainer.

◆ SetPointThickness()

void SpaceVIL.Core.IPoints.SetPointThickness ( float  thickness)

Setting thickness of points.

Parameters
thicknessPoint thickness.

Implemented in SpaceVIL.PointsContainer.


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