Uses of Class
gov.nasa.worldwind.util.BufferWrapper
-
Packages that use BufferWrapper Package Description gov.nasa.worldwind.data This package provides classes for converting raw data sources into a form which can be used by standard WorldWind components, such asLayerandElevationModel.gov.nasa.worldwind.geom gov.nasa.worldwind.terrain gov.nasa.worldwind.util gov.nasa.worldwindx.examples.analytics -
-
Uses of BufferWrapper in gov.nasa.worldwind.data
Fields in gov.nasa.worldwind.data declared as BufferWrapper Modifier and Type Field Description protected BufferWrapperBufferWrapperRaster. bufferMethods in gov.nasa.worldwind.data that return BufferWrapper Modifier and Type Method Description BufferWrapperBufferWrapperRaster. getBuffer()Constructors in gov.nasa.worldwind.data with parameters of type BufferWrapper Constructor Description BufferWrapperRaster(int width, int height, Sector sector, BufferWrapper buffer)BufferWrapperRaster(int width, int height, Sector sector, BufferWrapper buffer, AVList list) -
Uses of BufferWrapper in gov.nasa.worldwind.geom
Methods in gov.nasa.worldwind.geom with parameters of type BufferWrapper Modifier and Type Method Description static Vec4Vec4. computeAveragePoint3(BufferWrapper coordinates, int stride)Returns the arithmetic mean of the x, y, z coordinates of the specified points buffer.static BoxBox. computeBoundingBox(BufferWrapper coordinates, int stride)Computes aBoxthat bounds a specified buffer of points.static Vec4[]Vec4. computeExtrema(BufferWrapper buffer)static SphereSphere. createBoundingSphere(BufferWrapper buffer)Creates a sphere that completely contains a set of points.static MatrixMatrix. fromCovarianceOfVertices(BufferWrapper coordinates, int stride)Computes a symmetric covariance Matrix from the x, y, z coordinates of the specified buffer of points. -
Uses of BufferWrapper in gov.nasa.worldwind.terrain
Fields in gov.nasa.worldwind.terrain declared as BufferWrapper Modifier and Type Field Description protected BufferWrapperBasicElevationModel.ElevationTile. elevationsprotected BufferWrapperLocalElevationModel.LocalTile. elevationsThe elevations.protected BufferWrapperBasicElevationModel. extremesMethods in gov.nasa.worldwind.terrain that return BufferWrapper Modifier and Type Method Description BufferWrapperBasicElevationModel.ElevationTile. getElevations()protected BufferWrapperBasicElevationModel. getExtremes()protected BufferWrapperBasicElevationModel. makeBilElevations(java.net.URL url)protected BufferWrapperBasicElevationModel. makeTiffElevations(java.net.URL url)protected BufferWrapperBasicElevationModel. readElevations(java.net.URL url)Methods in gov.nasa.worldwind.terrain with parameters of type BufferWrapper Modifier and Type Method Description protected voidBasicElevationModel. addTileToCache(BasicElevationModel.ElevationTile tile, BufferWrapper elevations)voidBasicElevationModel.ElevationTile. setElevations(BufferWrapper elevations, BasicElevationModel em)Constructors in gov.nasa.worldwind.terrain with parameters of type BufferWrapper Constructor Description LocalTile(Sector sector, double missingDataFlag, int tileWidth, int tileHeight, BufferWrapper elevations, java.lang.Double minEl, java.lang.Double maxEl)Constructs a new elevations tile. -
Uses of BufferWrapper in gov.nasa.worldwind.util
Subclasses of BufferWrapper in gov.nasa.worldwind.util Modifier and Type Class Description static classBufferWrapper.AbstractBufferWrapper<T extends java.nio.Buffer>static classBufferWrapper.ByteBufferWrapperstatic classBufferWrapper.DoubleBufferWrapperprotected static classBufferWrapper.EmptyBufferWrapperstatic classBufferWrapper.FloatBufferWrapperstatic classBufferWrapper.IntBufferWrapperstatic classBufferWrapper.ShortBufferWrapperFields in gov.nasa.worldwind.util declared as BufferWrapper Modifier and Type Field Description protected BufferWrapperVecBuffer. bufferprotected BufferWrapperEGM96. deltasprotected static BufferWrapperBufferWrapper. EMPTY_BUFFER_WRAPPERMethods in gov.nasa.worldwind.util that return BufferWrapper Modifier and Type Method Description BufferWrapperBufferWrapper.ByteBufferWrapper. copyOf(int newSize)abstract BufferWrapperBufferWrapper. copyOf(int newSize)Returns a copy of this buffer with the specified new size.BufferWrapperBufferWrapper.DoubleBufferWrapper. copyOf(int newSize)BufferWrapperBufferWrapper.EmptyBufferWrapper. copyOf(int newSize)BufferWrapperBufferWrapper.FloatBufferWrapper. copyOf(int newSize)BufferWrapperBufferWrapper.IntBufferWrapper. copyOf(int newSize)BufferWrapperBufferWrapper.ShortBufferWrapper. copyOf(int newSize)protected abstract BufferWrapperBufferWrapper.AbstractBufferWrapper. doGetSubBuffer()protected BufferWrapperBufferWrapper.ByteBufferWrapper. doGetSubBuffer()protected BufferWrapperBufferWrapper.DoubleBufferWrapper. doGetSubBuffer()protected BufferWrapperBufferWrapper.FloatBufferWrapper. doGetSubBuffer()protected BufferWrapperBufferWrapper.IntBufferWrapper. doGetSubBuffer()protected BufferWrapperBufferWrapper.ShortBufferWrapper. doGetSubBuffer()static BufferWrapperBufferWrapper. emptyBufferWrapper()Returns the empty BufferWrapper.BufferWrapperVecBuffer. getBufferWrapper()Returns the backing BufferWrapper.BufferWrapperBufferWrapper.AbstractBufferWrapper. getSubBuffer(int index, int length)BufferWrapperBufferWrapper.EmptyBufferWrapper. getSubBuffer(int index, int length)abstract BufferWrapperBufferWrapper. getSubBuffer(int index, int length)Returns a new BufferWrapper which is a subsequence of this buffer.BufferWrapperBufferFactory.ByteBufferFactory. newBuffer(int size)Constructs a new ByteBufferWrapper of the specified size, backed by aByteBuffer.BufferWrapperBufferFactory.DoubleBufferFactory. newBuffer(int size)Constructs a new DoubleBufferWrapper of the specified size, backed by aDoubleBuffer.BufferWrapperBufferFactory.FloatBufferFactory. newBuffer(int size)Constructs a new FloatBufferWrapper of the specified size, backed by aFloatBuffer.BufferWrapperBufferFactory.IntBufferFactory. newBuffer(int size)Constructs a new IntBufferWrapper of the specified size, backed by aIntBuffer.abstract BufferWrapperBufferFactory. newBuffer(int size)Constructs a new BufferWrapper of the specified size.BufferWrapperBufferFactory.ShortBufferFactory. newBuffer(int size)Constructs a new ShortBufferWrapper of the specified size, backed by aShortBuffer.static BufferWrapperWWBufferUtil. newByteBufferWrapper(int size, boolean allocateDirect)Allocates a newBufferWrapperof the specified size, in bytes.static BufferWrapperWWBufferUtil. newDoubleBufferWrapper(int size, boolean allocateDirect)Allocates a newBufferWrapperof the specified size, in doubles.static BufferWrapperWWBufferUtil. newFloatBufferWrapper(int size, boolean allocateDirect)Allocates a newBufferWrapperof the specified size, in floats.static BufferWrapperWWBufferUtil. newIntBufferWrapper(int size, boolean allocateDirect)Allocates a newBufferWrapperof the specified size, in ints.static BufferWrapperWWBufferUtil. newShortBufferWrapper(int size, boolean allocateDirect)Allocates a newBufferWrapperof the specified size, in shorts.static BufferWrapperBufferWrapper. wrap(java.nio.ByteBuffer byteBuffer, AVList params)Wraps the specifiedByteBufferwith a BufferWrapper according to the specified parameters.static BufferWrapperBufferWrapper. wrap(java.nio.ByteBuffer byteBuffer, java.lang.Object dataType)Wraps the specifiedByteBufferwith a BufferWrapper according to the specified primitive dataType.static BufferWrapperBufferWrapper. wrap(java.nio.ByteBuffer byteBuffer, java.lang.Object dataType, java.lang.Object byteOrder)Wraps the specifiedByteBufferwith a BufferWrapper according to the specified primitive dataType and byteOrder.Methods in gov.nasa.worldwind.util with parameters of type BufferWrapper Modifier and Type Method Description static double[]WWBufferUtil. computeExtremeValues(BufferWrapper buffer)Returns the minimum and maximum floating point values in the specified buffer.static double[]WWBufferUtil. computeExtremeValues(BufferWrapper buffer, double missingDataSignal)Returns the minimum and maximum floating point values in the specified buffer.static Vec4[]WWMath. computePrincipalAxes(BufferWrapper coordinates, int stride)Returns an array of normalized vectors defining the three principal axes of the x-, y-, and z-coordinates from the specified buffer of points, sorted from the most prominent axis to the least prominent.protected abstract booleanBufferWrapper.AbstractBufferWrapper. doPutSubBuffer(int index, BufferWrapper buffer, int offset, int length)protected booleanBufferWrapper.ByteBufferWrapper. doPutSubBuffer(int index, BufferWrapper buffer, int offset, int length)protected booleanBufferWrapper.DoubleBufferWrapper. doPutSubBuffer(int index, BufferWrapper buffer, int offset, int length)protected booleanBufferWrapper.FloatBufferWrapper. doPutSubBuffer(int index, BufferWrapper buffer, int offset, int length)protected booleanBufferWrapper.IntBufferWrapper. doPutSubBuffer(int index, BufferWrapper buffer, int offset, int length)protected booleanBufferWrapper.ShortBufferWrapper. doPutSubBuffer(int index, BufferWrapper buffer, int offset, int length)voidBufferWrapper.AbstractBufferWrapper. putSubBuffer(int index, BufferWrapper buffer)voidBufferWrapper.AbstractBufferWrapper. putSubBuffer(int index, BufferWrapper buffer, int offset, int length)voidBufferWrapper.EmptyBufferWrapper. putSubBuffer(int index, BufferWrapper buffer)voidBufferWrapper.EmptyBufferWrapper. putSubBuffer(int index, BufferWrapper buffer, int offset, int length)abstract voidBufferWrapper. putSubBuffer(int index, BufferWrapper buffer)Sets a subsequence of this buffer with the contents of the specified buffer.abstract voidBufferWrapper. putSubBuffer(int index, BufferWrapper buffer, int offset, int length)Sets a subsequence of this buffer with the contents of the specified buffer.Constructors in gov.nasa.worldwind.util with parameters of type BufferWrapper Constructor Description VecBuffer(int coordsPerVec, BufferWrapper buffer)Constructs a new VecBuffer with the specified vector size, and backing BufferWrapper. -
Uses of BufferWrapper in gov.nasa.worldwindx.examples.analytics
Methods in gov.nasa.worldwindx.examples.analytics that return BufferWrapper Modifier and Type Method Description static BufferWrapperAnalyticSurfaceDemo. randomGridValues(int width, int height, double min, double max)static BufferWrapperAnalyticSurfaceDemo. randomGridValues(int width, int height, double min, double max, int numIterations, double smoothness, BufferFactory factory)Methods in gov.nasa.worldwindx.examples.analytics with parameters of type BufferWrapper Modifier and Type Method Description static java.lang.Iterable<? extends AnalyticSurface.GridPointAttributes>AnalyticSurface. createColorGradientValues(BufferWrapper values, double missingDataSignal, double minValue, double maxValue, double minHue, double maxHue)Returns a new iterable populated withAnalyticSurface.GridPointAttributescomputed by invokingAnalyticSurface.createColorGradientAttributes(double, double, double, double, double)for each double value in the speicfiedBufferWrapper.static java.lang.Iterable<? extends AnalyticSurface.GridPointAttributes>AnalyticSurfaceDemo. createMixedColorGradientGridValues(double a, BufferWrapper firstBuffer, BufferWrapper secondBuffer, double minValue, double maxValue, double minHue, double maxHue)protected static voidAnalyticSurfaceDemo. mixValuesOverTime(long timeToMix, BufferWrapper firstBuffer, BufferWrapper secondBuffer, double minValue, double maxValue, double minHue, double maxHue, AnalyticSurface surface)
-