Partager via


Méthode SpaceFillingCurve.Hilbert

Cette API prend en charge l'infrastructure SQL Server 2012 et n'est pas destinée à être utilisée directement à partir de votre code.

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

Espace de noms :  Microsoft.SqlServer.Types
Assembly :  Microsoft.SqlServer.Types (en Microsoft.SqlServer.Types.dll)

Syntaxe

'Déclaration
Public Shared Function Hilbert ( _
    order As Integer, _
    x As UInteger, _
    y As UInteger _
) As ULong
'Utilisation
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

Paramètres

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

Valeur de retour

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

Voir aussi

Référence

SpaceFillingCurve Classe

Espace de noms Microsoft.SqlServer.Types