SpaceFillingCurve.ReverseHilbert 方法 (Int32, UInt64, UInt32, UInt32)

 

此 API 支持 产品 基础结构,不应从代码直接使用。

返回给定 Hilbert 曲线的点以及该曲线的迭代顺序。

命名空间:   Microsoft.SqlServer.Types
程序集:  Microsoft.SqlServer.Types(位于 Microsoft.SqlServer.Types.dll)

语法

public static void ReverseHilbert(
    int order,
    ulong hilbert,
    out uint ox,
    out uint oy
)
public:
static void ReverseHilbert(
    int order,
    unsigned long long hilbert,
    [OutAttribute] unsigned int% ox,
    [OutAttribute] unsigned int% oy
)
static member ReverseHilbert : 
        order:int *
        hilbert:uint64 *
        ox:uint32 byref *
        oy:uint32 byref -> unit
Public Shared Sub ReverseHilbert (
    order As Integer,
    hilbert As ULong,
    <OutAttribute> ByRef ox As UInteger,
    <OutAttribute> ByRef oy As UInteger
)

参数

  • ox
    Type: System.UInt32

    在此方法返回时,包含点的 x 坐标。

  • oy
    Type: System.UInt32

    在此方法返回时,包含点的 y 坐标。

另请参阅

SpaceFillingCurve 类
Microsoft.SqlServer.Types 命名空间

返回页首