Get a tile, filling in a prespecified array. This version does not check that the user hase entered a valid set of corner and length arrays. ensure that out matches the length implied by the lengths array.
Namespace: nom.tam.image
Assembly: CSharpFITS_v1.1 (in CSharpFITS_v1.1.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Overridable Sub GetTile( _ ByVal outArray As Array, _ ByVal corners As Integer(), _ ByVal lengths As Integer() _ ) |
C# |
---|
public virtual void GetTile( Array outArray, int[] corners, int[] lengths ) |
C++ |
---|
public: virtual void GetTile( Array outArray, array<int>^ corners, array<int>^ lengths ) |
J# |
---|
public virtual void GetTile( Array outArray, int[] corners, int[] lengths ) |
JScript |
---|
public virtual
function GetTile( outArray : Array, corners : int[], lengths : int[] ) |
Parameters
- outArray
- The output tile array. A one-dimensional array. Data not within the valid limits of the image will be left unchanged. The length of this array should be the product of lengths.
- corners
- The corners of the tile.
- lengths
- The dimensions of the tile.