Share via


SpaceFillingCurve.Hilbert, méthode (Int32, UInt32, UInt32)

 

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

Retourne la courbe de Hilbert pour le point et l'ordre d'itération de la courbe spécifiés.

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

Syntaxe

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 Shared Function Hilbert (
    order As Integer,
    x As UInteger,
    y As UInteger
) As ULong

Paramètres

  • x
    Type: System.UInt32

    Coordonnée x d'un point dans le carré d'unité.

  • y
    Type: System.UInt32

    Coordonnée y d'un point dans le carré d'unité.

Valeur de retour

Type: System.UInt64

Objet UInt64 qui représente la courbe de Hilbert à partir du point et de l'ordre de la courbe spécifiés.

Voir aussi

SpaceFillingCurve, classe
Microsoft.SqlServer.Types, espace de noms

Retour au début