Package | Description |
---|---|
agi.foundation.graphics |
Provides commonly used and instantiated graphics types related to 3D scene management, terrain and imagery, and more.
|
agi.foundation.graphics.advanced |
Provides less commonly instantiated graphics types for the camera, mouse options, primitive options, and others.
|
Modifier and Type | Method and Description |
---|---|
ScreenOverlayUnit |
Overlay.getHeightUnit()
Gets the unit of the
Height property. |
ScreenOverlayUnit |
Overlay.getWidthUnit()
Gets the unit of the
Width property. |
ScreenOverlayUnit |
Overlay.getXUnit()
Gets the unit of the
X property. |
ScreenOverlayUnit |
Overlay.getYUnit()
Gets the unit of the
Y property. |
Modifier and Type | Method and Description |
---|---|
void |
Overlay.setHeightUnit(ScreenOverlayUnit value)
Sets the unit of the
Height property. |
void |
Overlay.setWidthUnit(ScreenOverlayUnit value)
Sets the unit of the
Width property. |
void |
Overlay.setXUnit(ScreenOverlayUnit value)
Sets the unit of the
X property. |
void |
Overlay.setYUnit(ScreenOverlayUnit value)
Sets the unit of the
Y property. |
Modifier and Type | Method and Description |
---|---|
static ScreenOverlayUnit |
ScreenOverlayUnit.getDefault()
Get the enum constant that is considered to be the default.
|
static ScreenOverlayUnit |
ScreenOverlayUnit.getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
ScreenOverlayUnit |
ScreenOverlaySize.getHeightUnit()
Gets the unit with which the
Height (get ) property is represented. |
ScreenOverlayUnit |
ScreenOverlaySize.getWidthUnit()
Gets the unit with which the
Width (get ) property is represented. |
ScreenOverlayUnit |
ScreenOverlayPoint.getXUnit()
Gets the unit with which the
X (get ) property is represented. |
ScreenOverlayUnit |
ScreenOverlayPoint.getYUnit()
Gets the unit with which the
Y (get ) property is represented. |
static ScreenOverlayUnit |
ScreenOverlayUnit.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScreenOverlayUnit[] |
ScreenOverlayUnit.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
ScreenOverlayPoint(double x,
double y,
ScreenOverlayUnit xUnit,
ScreenOverlayUnit yUnit)
Initializes a new instance with a specified position expressed in specified units.
|
ScreenOverlaySize(double width,
double height,
ScreenOverlayUnit widthUnit,
ScreenOverlayUnit heightUnit)
Initializes a new instance with a specified width and height expressed in specified units.
|