この API は、SQL Server 2012 インフラストラクチャをサポートします。独自に作成したコードから直接使用するためのものではありません。
指定した点と曲線の反復順序から成るヒルベルト曲線を返します。
名前空間: 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
曲線の反復順序です。
- x
型: System.UInt32
単位正方形内の点の x 座標です。
- y
型: System.UInt32
単位正方形内の点の y 座標です。
戻り値
型: System.UInt64
指定した点と曲線の順序から成るヒルベルト曲線を表す UInt64 オブジェクトです。