Example usage for Java javax.media.j3d Raster fields, constructors, methods, implement or subclass
The text is from its open source code.
int | RASTER_COLOR Specifies a Raster object with color data. |
int | RASTER_DEPTH Specifies a Raster object with depth (z-buffer) data. |
int | ALLOW_IMAGE_WRITE Specifies that this Raster allows writing the image. |
int | ALLOW_SIZE_READ Specifies that this Raster allows reading the size. |
Raster(Point3f pos, int type, int xSrcOffset, int ySrcOffset, int width, int height, ImageComponent2D image, DepthComponent depthComponent) Constructs a new Raster object with the specified values. | |
Raster(Point3f pos, int type, int clipMode, Point srcOffset, Dimension size, Point dstOffset, ImageComponent2D image, DepthComponent depthComponent) Constructs a new Raster object with the specified values. | |
Raster() Constructs a Raster object with default parameters. |
void | setCapability(int bit) Sets the specified capability bit. |
void | setImage(ImageComponent2D image) Sets the pixel array used to copy pixels to/from a Canvas3D. |
void | setOffset(int xSrcOffset, int ySrcOffset) |
void | setPosition(Point3f pos) Sets the position in object coordinates of this raster. |
void | setSize(int width, int height) Sets the number of pixels to be copied from the pixel array. |
void | setType(int type) Sets the type of this raster object to one of: RASTER_COLOR, RASTER_DEPTH, or RASTER_COLOR_DEPTH. |