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.renderer |
Defines types that interface to the GPU that are independent of the underlying graphics API, such as OpenGL.
|
agi.foundation.platforms |
Contains types used in modeling various mechanical platforms such as satellites, facilities, aircraft, etc.
|
agi.foundation.tracking |
Contains types for acquiring, analyzing and archiving dynamic data, such as those found in real-time feeds or simulation environments.
|
Modifier and Type | Method and Description |
---|---|
TextureFilter2D |
TriangleMeshPrimitive.getTextureFilter()
Gets the filter used for the
Texture associated with this triangle mesh. |
TextureFilter2D |
TextureScreenOverlay.getTextureFilter()
Gets the filter used for the
Texture associated with this overlay. |
TextureFilter2D |
TextBatchPrimitive.getTextureFilter()
Gets the filter used to filter the texture-based
Font . |
TextureFilter2D |
SurfaceMeshPrimitive.getTextureFilter()
Gets the filter used when a
Texture is applied to this primitive. |
TextureFilter2D |
MarkerBatchPrimitive.getTextureFilter()
Gets the filter used for per-marker or per-batch textures.
|
Modifier and Type | Method and Description |
---|---|
void |
TriangleMeshPrimitive.setTextureFilter(TextureFilter2D filter)
Sets the filter used for the
Texture associated with this triangle mesh. |
void |
TextureScreenOverlay.setTextureFilter(TextureFilter2D inVal)
Sets the filter used for the
Texture associated with this overlay. |
void |
TextBatchPrimitive.setTextureFilter(TextureFilter2D filter)
Sets the filter used to filter the texture-based
Font . |
void |
SurfaceMeshPrimitive.setTextureFilter(TextureFilter2D filter)
Sets the filter used when a
Texture is applied to this primitive. |
void |
MarkerBatchPrimitive.setTextureFilter(TextureFilter2D value)
Sets the filter used for per-marker or per-batch textures.
|
Modifier and Type | Method and Description |
---|---|
static TextureFilter2D |
TextureFilter2D.getLinearClampToEdge()
Gets a texture filter with the following properties:
|
static TextureFilter2D |
TextureFilter2D.getLinearRepeat()
Gets a texture filter with the following properties:
|
static TextureFilter2D |
TextureFilter2D.getNearestClampToEdge()
Gets a texture filter with the following properties:
|
static TextureFilter2D |
TextureFilter2D.getNearestRepeat()
Gets a texture filter with the following properties:
|
Modifier and Type | Method and Description |
---|---|
static boolean |
TextureFilter2D.equals(TextureFilter2D left,
TextureFilter2D right)
Returns
true if the two instances are exactly equal. |
boolean |
TextureFilter2D.equalsType(TextureFilter2D other)
Indicates whether another instance of this type is exactly equal to this instance.
|
static boolean |
TextureFilter2D.notEquals(TextureFilter2D left,
TextureFilter2D right)
Returns
true if the two instances are not exactly equal. |
Modifier and Type | Method and Description |
---|---|
GraphicsParameter<TextureFilter2D> |
TextGraphics.getTextureFilter()
Gets a parameter indicating the
TextureFilter2D of the text over time. |
GraphicsParameter<TextureFilter2D> |
SurfaceGraphics.getTextureFilter()
Gets a parameter defining the
TextureFilter2D of the surface over time. |
GraphicsParameter<TextureFilter2D> |
MarkerGraphics.getTextureFilter()
Gets a parameter indicating the
TextureFilter2D of the marker over time. |
Modifier and Type | Method and Description |
---|---|
void |
TextGraphics.setTextureFilter(GraphicsParameter<TextureFilter2D> value)
Sets a parameter indicating the
TextureFilter2D of the text over time. |
void |
SurfaceGraphics.setTextureFilter(GraphicsParameter<TextureFilter2D> value)
Sets a parameter defining the
TextureFilter2D of the surface over time. |
void |
MarkerGraphics.setTextureFilter(GraphicsParameter<TextureFilter2D> value)
Sets a parameter indicating the
TextureFilter2D of the marker over time. |
Modifier and Type | Method and Description |
---|---|
TextureFilter2D |
SensorFieldOfViewVisualizer.getFootprintInteriorTextureFilter()
Gets a value defining the
TextureFilter2D of the footprint interior. |
TextureFilter2D |
LabelVisualizer.getTextureFilter()
Gets filter to use.
|
Modifier and Type | Method and Description |
---|---|
void |
SensorFieldOfViewVisualizer.setFootprintInteriorTextureFilter(TextureFilter2D value)
Sets a value defining the
TextureFilter2D of the footprint interior. |
void |
LabelVisualizer.setTextureFilter(TextureFilter2D value)
Sets filter to use.
|