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.
|
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... | |
An interface that discribes such type of items that are points (for drawing graphs).
Color SpaceVIL.Core.IPoints.GetPointColor | ( | ) |
Getting points color.
Implemented in SpaceVIL.PointsContainer.
List<float[]> SpaceVIL.Core.IPoints.GetPoints | ( | ) |
Getting points coordinates.
Implemented in SpaceVIL.PointsContainer.
List<float[]> SpaceVIL.Core.IPoints.GetPointShape | ( | ) |
Getting current shape of points. Default: circle shape.
Implemented in SpaceVIL.PointsContainer.
float SpaceVIL.Core.IPoints.GetPointThickness | ( | ) |
void SpaceVIL.Core.IPoints.SetPointColor | ( | Color | color | ) |
Setting points color.
color | Points color as System.Drawing.Color. |
Implemented in SpaceVIL.PointsContainer.
void SpaceVIL.Core.IPoints.SetPoints | ( | List< float[]> | coord | ) |
Setting points coordinates.
coord | Points list as List of float[2] array. |
Implemented in SpaceVIL.PointsContainer.
void SpaceVIL.Core.IPoints.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 SpaceVIL.PointsContainer.
void SpaceVIL.Core.IPoints.SetPointThickness | ( | float | thickness | ) |
Setting thickness of points.
thickness | Point thickness. |
Implemented in SpaceVIL.PointsContainer.