Tao.Ode SDK Documentation |
|
Ode.dHashSpaceGetLevels Method
Get some parameters for a multi-resolution hash table space. The smallest and largest cell sizes used in the hash table will be 2^minlevel and 2^maxlevel respectively. minlevel must be less than or equal to maxlevel. The minimum and maximum levels are returned through pointers. If a pointer is zero then it is ignored and no argument is returned.
[Visual Basic]
Public Shared Sub dHashSpaceGetLevels( _
ByVal
space As
IntPtr, _
ByRef
minlevel As
Integer, _
ByRef
maxlevel As
Integer _
)
[C#]
public static
void dHashSpaceGetLevels(
IntPtr space,
ref
int minlevel,
ref
int maxlevel);
Parameters
-
space
- the space to query
-
minlevel
- returns current minlevel
-
maxlevel
- returns current maxlevel
See Also
Ode Class | Tao.Ode Namespace