Метод SpaceFillingCurve.Hilbert
Этот API-интерфейс поддерживает инфраструктуру SQL Server 2012 и не предназначен для использования непосредственно из кода.
Returns the Hilbert curve for the specified point and iteration order of the curve.
Пространство имен: Microsoft.SqlServer.Types
Сборка: Microsoft.SqlServer.Types (в Microsoft.SqlServer.Types.dll)
Синтаксис
'Декларация
Public Shared Function Hilbert ( _
order As Integer, _
x As UInteger, _
y As UInteger _
) As ULong
'Применение
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
Параметры
- order
Тип: System.Int32
The iteration order of the curve.
- x
Тип: System.UInt32
The x-coordinate of a point within the unit square.
- y
Тип: System.UInt32
The y-coordinate of a point within the unit square.
Возвращаемое значение
Тип: System.UInt64
The UInt64 object that represents the Hilbert curve from the specified point and order of the curve.