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 images (for texturing). More...
Inherited by com.spvessel.spacevil.ImageItem.
Public Member Functions | |
BufferedImage | getImage () |
Method for describing how to get a bitmap in the form of java.awt.image.BufferedImage. More... | |
int | getImageWidth () |
Method for describing how to get an image width. More... | |
int | getImageHeight () |
Method for describing how to get an image height. More... | |
Color | getColorOverlay () |
Method for getting color overlay (useful in images that have alpha channel). More... | |
boolean | isColorOverlay () |
Method for getting color overlay status. More... | |
float | getRotationAngle () |
Method for getting rotation angle of an image. More... | |
Area | getAreaBounds () |
Method for getting bounds for an image (for example: to keep aspect ratio). More... | |
An interface that discribes such type of items that are images (for texturing).
Area com.spvessel.spacevil.Core.InterfaceImageItem.getAreaBounds | ( | ) |
Method for getting bounds for an image (for example: to keep aspect ratio).
Implemented in com.spvessel.spacevil.ImageItem.
Color com.spvessel.spacevil.Core.InterfaceImageItem.getColorOverlay | ( | ) |
Method for getting color overlay (useful in images that have alpha channel).
Implemented in com.spvessel.spacevil.ImageItem.
BufferedImage com.spvessel.spacevil.Core.InterfaceImageItem.getImage | ( | ) |
Method for describing how to get a bitmap in the form of java.awt.image.BufferedImage.
Implemented in com.spvessel.spacevil.ImageItem.
int com.spvessel.spacevil.Core.InterfaceImageItem.getImageHeight | ( | ) |
Method for describing how to get an image height.
Implemented in com.spvessel.spacevil.ImageItem.
int com.spvessel.spacevil.Core.InterfaceImageItem.getImageWidth | ( | ) |
Method for describing how to get an image width.
Implemented in com.spvessel.spacevil.ImageItem.
float com.spvessel.spacevil.Core.InterfaceImageItem.getRotationAngle | ( | ) |
Method for getting rotation angle of an image.
Implemented in com.spvessel.spacevil.ImageItem.
boolean com.spvessel.spacevil.Core.InterfaceImageItem.isColorOverlay | ( | ) |
Method for getting color overlay status.
Implemented in com.spvessel.spacevil.ImageItem.