共用方式為


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.

請參閱

參考

SpaceFillingCurve 類別

Microsoft.SqlServer.Types 命名空間