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 adjacent points are considered lines (for drawing graphs). More...
Inherits SpaceVIL.Core.IPosition.
Inherited by SpaceVIL.LinesContainer.
Public Member Functions | |
void | SetLineThickness (float thickness) |
Setting thickness of lines. More... | |
float | GetLineThickness () |
Getting lines thickness. More... | |
void | SetLineColor (Color color) |
Setting lines color. More... | |
Color | GetLineColor () |
Getting lines color. More... | |
List< float[]> | GetPoints () |
Getting adjacent points are considered lines. More... | |
void | SetPoints (List< float[]> coord) |
Setting adjacent points are considered lines. More... | |
Public Member Functions inherited from SpaceVIL.Core.IPosition | |
void | SetX (int x) |
Method for setting X coordinate of the left-top corner of a shape. More... | |
int | GetX () |
Method for getting X coordinate of the left-top corner of a shape. More... | |
void | SetY (int y) |
Method for setting Y coordinate of the left-top corner of a shape. More... | |
int | GetY () |
Method for getting Y coordinate of the left-top corner of a shape. More... | |
An interface that discribes such type of items that are adjacent points are considered lines (for drawing graphs).
Color SpaceVIL.Core.ILines.GetLineColor | ( | ) |
float SpaceVIL.Core.ILines.GetLineThickness | ( | ) |
List<float[]> SpaceVIL.Core.ILines.GetPoints | ( | ) |
Getting adjacent points are considered lines.
Implemented in SpaceVIL.LinesContainer.
void SpaceVIL.Core.ILines.SetLineColor | ( | Color | color | ) |
void SpaceVIL.Core.ILines.SetLineThickness | ( | float | thickness | ) |
Setting thickness of lines.
thickness | Line thickness. |
Implemented in SpaceVIL.LinesContainer.
void SpaceVIL.Core.ILines.SetPoints | ( | List< float[]> | coord | ) |
Setting adjacent points are considered lines.
coord | Points list as List of float[2] array. |
Implemented in SpaceVIL.LinesContainer.