Partilhar via


Método SpaceFillingCurve.Hilbert

Essa API oferece suporte à infraestrutura do SQL Server 2012 e não se destina a ser usada diretamente no seu código.

Returns the Hilbert curve for the specified point and iteration order of the curve.

Namespace:  Microsoft.SqlServer.Types
Assembly:  Microsoft.SqlServer.Types (em Microsoft.SqlServer.Types.dll)

Sintaxe

'Declaração
Public Shared Function Hilbert ( _
    order As Integer, _
    x As UInteger, _
    y As UInteger _
) As ULong
'Uso
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

Parâmetros

  • order
    Tipo: System.Int32
    The iteration order of the curve.
  • x
    Tipo: System.UInt32
    The x-coordinate of a point within the unit square.
  • y
    Tipo: System.UInt32
    The y-coordinate of a point within the unit square.

Valor de retorno

Tipo: System.UInt64
The UInt64 object that represents the Hilbert curve from the specified point and order of the curve.

Consulte também

Referência

SpaceFillingCurve Classe

Namespace Microsoft.SqlServer.Types