Uses of Interface
gov.nasa.worldwind.render.WWTexture
-
Packages that use WWTexture Package Description gov.nasa.worldwind.ogc.collada.impl Provides classes for rendering COLLADA documents.gov.nasa.worldwind.ogc.kml.impl gov.nasa.worldwind.render gov.nasa.worldwind.symbology Provides classes for creating and displaying graphics from standard symbol sets.gov.nasa.worldwind.util.tree A tree control drawn in the WorldWindow.gov.nasa.worldwind.util.webview Provides classes for loading web content, laying out and rendering the content as an OpenGL texture, and interacting with the rendered content.gov.nasa.worldwindx.applications.antenna gov.nasa.worldwindx.applications.sar gov.nasa.worldwindx.examples.util -
-
Uses of WWTexture in gov.nasa.worldwind.ogc.collada.impl
Fields in gov.nasa.worldwind.ogc.collada.impl declared as WWTexture Modifier and Type Field Description protected WWTexture
ColladaMeshShape.Geometry. texture
Texture applied to this geometry.Methods in gov.nasa.worldwind.ogc.collada.impl that return WWTexture Modifier and Type Method Description protected WWTexture
ColladaMeshShape. getTexture(ColladaMeshShape.Geometry geometry)
Indicates the texture applied to this shape. -
Uses of WWTexture in gov.nasa.worldwind.ogc.kml.impl
Methods in gov.nasa.worldwind.ogc.kml.impl that return WWTexture Modifier and Type Method Description protected WWTexture
KMLPointPlacemarkImpl. initializeTexture(java.lang.String address)
Load a texture. -
Uses of WWTexture in gov.nasa.worldwind.render
Classes in gov.nasa.worldwind.render that implement WWTexture Modifier and Type Class Description class
BasicWWTexture
Basic implementation of a texture derived from an image source such as an image file or aBufferedImage
.class
FBOTexture
class
FramebufferTexture
class
LazilyLoadedTexture
Represents a texture derived from a lazily loaded image source such as an image file or aBufferedImage
.Fields in gov.nasa.worldwind.render declared as WWTexture Modifier and Type Field Description protected WWTexture
PointPlacemark. activeTexture
protected WWTexture
ExtrudedPolygon. capTexture
This shape's cap texture.protected WWTexture
SurfacePolygon. explicitTexture
If an image source was specified, this is the WWTexture form.protected WWTexture
SurfaceImage. generatedTexture
protected WWTexture
SurfaceImage. previousGeneratedTexture
protected WWTexture
SurfaceImage. previousSourceTexture
protected WWTexture
FramebufferTexture. sourceTexture
protected WWTexture
SurfaceImage. sourceTexture
protected WWTexture
AbstractBrowserBalloon.BrowserControl. texture
protected WWTexture
AbstractSurfaceShape. texture
protected WWTexture
Polygon. texture
If an image source was specified, this is the WWTexture form.protected WWTexture
Quadrilateral. texture
protected WWTexture
SurfaceIcon. texture
protected WWTexture
SurfacePolygons. texture
Fields in gov.nasa.worldwind.render with type parameters of type WWTexture Modifier and Type Field Description protected java.util.List<WWTexture>
ExtrudedPolygon.ExtrudedBoundaryInfo. sideTextures
The textures to apply to this boundary, one per face.protected java.util.List<java.util.List<WWTexture>>
ExtrudedPolygon. sideTextures
This shape's side textures.protected java.util.Map<java.lang.String,WWTexture>
PointPlacemark. textures
protected java.util.Map<java.lang.Integer,WWTexture>
RigidShape. textures
TheWWTexture
created for the image source, if any.Methods in gov.nasa.worldwind.render that return WWTexture Modifier and Type Method Description protected WWTexture
PointPlacemark. chooseTexture(PointPlacemarkAttributes attrs)
Determines the appropriate texture for the current availability.WWTexture
AnnotationAttributes. getBackgroundTexture(DrawContext dc)
Get the background image as aWWTexture
for the specified draw context.protected WWTexture
ExtrudedPolygon. getCapTexture()
Get the texture applied to this extruded polygon's cap.protected WWTexture
AbstractSurfaceShape. getInteriorTexture()
protected WWTexture
AbstractBrowserBalloon.BrowserControl. getTexture()
protected WWTexture
Polygon. getTexture()
Get the texture applied to this polygon.protected WWTexture
RigidShape. getTexture(int index)
Returns the texture applied to this shape's #index piece of geometry.protected WWTexture
SurfaceIcon. getTexture()
protected WWTexture
SurfacePolygons. getTexture()
protected WWTexture
SurfaceImage. initializeGeneratedTexture(DrawContext dc)
protected WWTexture
PointPlacemark. initializeTexture(java.lang.String address)
Load a texture.protected WWTexture
AbstractShape. makeTexture(java.lang.Object imageSource)
Creates aWWTexture
for a specified image source.Methods in gov.nasa.worldwind.render that return types with arguments of type WWTexture Modifier and Type Method Description protected java.util.List<WWTexture>
ExtrudedPolygon. fillImageList(java.lang.Iterable<?> imageSources)
Creates texture object for a boundary's image sources.Methods in gov.nasa.worldwind.render with parameters of type WWTexture Modifier and Type Method Description protected void
AbstractAnnotation. applyBackgroundTextureState(DrawContext dc, int width, int height, double opacity, WWTexture texture)
protected void
AbstractSurfaceShape. applyInteriorState(DrawContext dc, SurfaceTileDrawContext sdc, ShapeAttributes attributes, WWTexture texture, LatLon refLocation)
protected void
SurfacePolygon. applyInteriorState(DrawContext dc, SurfaceTileDrawContext sdc, ShapeAttributes attributes, WWTexture texture, LatLon refLocation)
protected void
AbstractSurfaceShape. applyInteriorTextureState(DrawContext dc, SurfaceTileDrawContext sdc, ShapeAttributes attributes, WWTexture texture, LatLon refLocation)
protected void
AbstractAnnotation. doDrawBackgroundTexture(DrawContext dc, int width, int height, double opacity, Position pickPosition, WWTexture texture)
protected void
RigidShape. setTexture(int index, WWTexture texture)
Establishes the texture for this piece of the shape's geometry.protected void
AbstractAnnotation. transformBackgroundImageCoordsToAnnotationCoords(DrawContext dc, int width, int height, WWTexture texture)
Transforms texture coordinates from Annotation background image coordinates to Annotation geometry coordinates (in screen pixels), and applies the Annotation's image scale and image offset attributes.protected void
AbstractAnnotation. transformImageCoordsToBackgroundImageCoords(DrawContext dc, WWTexture texture)
Transforms texture coordinates from standard GL image coordinates to Annotation background image coordinates.Constructors in gov.nasa.worldwind.render with parameters of type WWTexture Constructor Description FBOTexture(WWTexture imageSource, Sector sector, java.util.List<LatLon> corners)
FramebufferTexture(WWTexture imageSource, Sector sector, java.util.List<LatLon> corners)
-
Uses of WWTexture in gov.nasa.worldwind.symbology
Classes in gov.nasa.worldwind.symbology that implement WWTexture Modifier and Type Class Description protected static class
AbstractTacticalSymbol.IconTexture
Fields in gov.nasa.worldwind.symbology declared as WWTexture Modifier and Type Field Description protected WWTexture
AbstractTacticalSymbol. activeIconTexture
protected WWTexture
AbstractTacticalSymbol. iconTexture
-
Uses of WWTexture in gov.nasa.worldwind.util.tree
Methods in gov.nasa.worldwind.util.tree that return WWTexture Modifier and Type Method Description WWTexture
TreeNode. getTexture()
Get the texture loaded for the node's icon. -
Uses of WWTexture in gov.nasa.worldwind.util.webview
Fields in gov.nasa.worldwind.util.webview declared as WWTexture Modifier and Type Field Description protected WWTexture
AbstractWebView. textureRep
Deprecated.The WebView's current texture representation.Methods in gov.nasa.worldwind.util.webview that return WWTexture Modifier and Type Method Description protected abstract WWTexture
AbstractWebView. createTextureRepresentation(DrawContext dc)
Deprecated.Create a texture representation of the WebView.protected WWTexture
MacWebView. createTextureRepresentation(DrawContext dc)
Deprecated.protected WWTexture
WindowsWebView. createTextureRepresentation(DrawContext dc)
Deprecated.Create a texture representation of the WebView.WWTexture
AbstractWebView. getTextureRepresentation(DrawContext dc)
Deprecated.Returns a layed out and rendered representation of the WebView's content as aWWTexture
.WWTexture
WebView. getTextureRepresentation(DrawContext dc)
Deprecated.Returns a layed out and rendered representation of the WebView's content as aWWTexture
. -
Uses of WWTexture in gov.nasa.worldwindx.applications.antenna
Fields in gov.nasa.worldwindx.applications.antenna declared as WWTexture Modifier and Type Field Description protected WWTexture
AntennaModel. texture
-
Uses of WWTexture in gov.nasa.worldwindx.applications.sar
Fields in gov.nasa.worldwindx.applications.sar declared as WWTexture Modifier and Type Field Description protected WWTexture
ElevationPlane. texture
Methods in gov.nasa.worldwindx.applications.sar that return WWTexture Modifier and Type Method Description protected WWTexture
ElevationPlane. getTexture()
-
Uses of WWTexture in gov.nasa.worldwindx.examples.util
Fields in gov.nasa.worldwindx.examples.util declared as WWTexture Modifier and Type Field Description protected WWTexture
ButtonAnnotation. pressedMaskTexture
Methods in gov.nasa.worldwindx.examples.util that return WWTexture Modifier and Type Method Description WWTexture
ButtonAnnotation. getPressedMaskTexture()
WWTexture
ImageAnnotation. getTexture(DrawContext dc)
Methods in gov.nasa.worldwindx.examples.util with parameters of type WWTexture Modifier and Type Method Description protected void
ButtonAnnotation. applyBackgroundTextureState(DrawContext dc, int width, int height, double opacity, WWTexture texture)
protected void
ImageAnnotation. applyBackgroundTextureState(DrawContext dc, int width, int height, double opacity, WWTexture texture)
protected void
DialogAnnotation.BusyImage. transformBackgroundImageCoordsToAnnotationCoords(DrawContext dc, int width, int height, WWTexture texture)
protected void
ImageAnnotation. transformBackgroundImageCoordsToAnnotationCoords(DrawContext dc, int width, int height, WWTexture texture)
-