VRay SDK for C#
|
A class representing a region that has been rendered by an assigned host machine. The class holds the resulting image for the bounding region. More...
Inherits VRay.BucketRegion.
Public Member Functions | |
BucketImage (int x, int y, int width, int height, String host, VRayImage image) | |
Constructs a bucket region from the given arguments. Note: The (x, y) position represents the upper left coordinate of the bucket matrix. More... | |
![]() | |
BucketRegion (int x, int y, int width, int height, string host) | |
Constructs a bucket region from the given arguments. Note: The (x, y) position represents the upper left coordinate of the bucket matrix. More... | |
![]() | |
RectRegion (int x, int y, int width, int height) | |
Constructs a rectangular region from the given arguments. Note: The (x, y) position represents the upper left coordinate of the matrix. More... | |
Properties | |
VRayImage | Image [get] |
The rendered image for the given region. | |
![]() | |
string | Host [get, protected set] |
The name of the host that does the rendering for the bucket region. | |
![]() | |
int | Height [get] |
Gets the actual height of the rendered bucket. | |
int | Width [get] |
Gets the actual width of the rendered bucket. | |
int | X [get] |
Gets the top left X coordinate of the rendered bucket. | |
int | Y [get] |
Gets the top left Y coordinate of the rendered bucket. | |
A class representing a region that has been rendered by an assigned host machine. The class holds the resulting image for the bounding region.
VRay.BucketImage.BucketImage | ( | int | x, |
int | y, | ||
int | width, | ||
int | height, | ||
String | host, | ||
VRayImage | image | ||
) |
Constructs a bucket region from the given arguments. Note: The (x, y) position represents the upper left coordinate of the bucket matrix.
x | The top left X coordinate of the rendered bucket region. |
y | The top left Y coordinate of the rendered bucket region. |
width | The actual width of the rendered bucket region. |
height | The actual height of the rendered bucket region. |
host | The name of the host that does the rendering for the bucket region. |
image | The rendered image. |