 | CMATHNicerScale Method |
Compute a nicer scale for a given min and max.
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void NicerScale(
ref double min,
ref double max,
ref double inc,
ref int pow
)
public static void NicerScale(
ref double min,
ref double max,
ref double inc,
ref int pow
)
Public Shared Sub NicerScale (
ByRef min As Double,
ByRef max As Double,
ByRef inc As Double,
ByRef pow As Integer
)
Public Shared Sub NicerScale (
ByRef min As Double,
ByRef max As Double,
ByRef inc As Double,
ByRef pow As Integer
)
public:
static void NicerScale(
double% min,
double% max,
double% inc,
int% pow
)
public:
static void NicerScale(
double% min,
double% max,
double% inc,
int% pow
)
static member NicerScale :
min : float byref *
max : float byref *
inc : float byref *
pow : int byref -> unit
static member NicerScale :
min : float byref *
max : float byref *
inc : float byref *
pow : int byref -> unit
Parameters
- min
- Type: SystemDouble
Min value (changed) - max
- Type: SystemDouble
Max value (changed) - inc
- Type: SystemDouble
Inc value (returned) - pow
- Type: SystemInt32
Power value (returned)
See Also