Fill the subset.
Namespace: nom.tam.image
Assembly: CSharpFITS_v1.1 (in CSharpFITS_v1.1.dll)
Syntax
Visual Basic (Declaration) |
---|
Protected Overridable Sub FillTile( _ ByVal data As Array, _ ByVal o As Array, _ ByVal dims As Integer(), _ ByVal corners As Integer(), _ ByVal lengths As Integer() _ ) |
C# |
---|
protected virtual void FillTile( Array data, Array o, int[] dims, int[] corners, int[] lengths ) |
C++ |
---|
protected: virtual void FillTile( Array data, Array o, array<int>^ dims, array<int>^ corners, array<int>^ lengths ) |
J# |
---|
protected virtual void FillTile( Array data, Array o, int[] dims, int[] corners, int[] lengths ) |
JScript |
---|
protected virtual
function FillTile( data : Array, o : Array, dims : int[], corners : int[], lengths : int[] ) |
Parameters
- data
- The memory-resident data image. This may be null if the image is to be read from a file. This should be a multi-dimensional primitive array.
- o
- The tile to be filled. This is a simple primitive array.
- dims
- The dimensions of the full image.
- corners
- The indices of the corner of the image.
- lengths
- The dimensions of the subset.