Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Diese API unterstützt die SQL Server 2012-Infrastruktur und ist nicht zur direkten Verwendung im Code bestimmt.
Returns the Hilbert curve for the specified point and iteration order of the curve.
Namespace: Microsoft.SqlServer.Types
Assembly: Microsoft.SqlServer.Types (in Microsoft.SqlServer.Types.dll)
Syntax
'Declaration
Public Shared Function Hilbert ( _
order As Integer, _
x As UInteger, _
y As UInteger _
) As ULong
'Usage
Dim order As Integer
Dim x As UInteger
Dim y As UInteger
Dim returnValue As ULong
returnValue = SpaceFillingCurve.Hilbert(order, _
x, y)
public static ulong Hilbert(
int order,
uint x,
uint y
)
public:
static unsigned long long Hilbert(
int order,
unsigned int x,
unsigned int y
)
static member Hilbert :
order:int *
x:uint32 *
y:uint32 -> uint64
public static function Hilbert(
order : int,
x : uint,
y : uint
) : ulong
Parameter
- order
Typ: System.Int32
The iteration order of the curve.
- x
Typ: System.UInt32
The x-coordinate of a point within the unit square.
- y
Typ: System.UInt32
The y-coordinate of a point within the unit square.
Rückgabewert
Typ: System.UInt64
The UInt64 object that represents the Hilbert curve from the specified point and order of the curve.