 | C3DNSetScale Method |
Set the axis relative scales.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void SetScale(
double x,
double y,
double z
)
public void SetScale(
double x,
double y,
double z
)
Public Sub SetScale (
x As Double,
y As Double,
z As Double
)
Public Sub SetScale (
x As Double,
y As Double,
z As Double
)
public:
void SetScale(
double x,
double y,
double z
)
public:
void SetScale(
double x,
double y,
double z
)
member SetScale :
x : float *
y : float *
z : float -> unit
member SetScale :
x : float *
y : float *
z : float -> unit
Parameters
- x
- Type: SystemDouble
X Scale (default 1.0) - y
- Type: SystemDouble
Y Scale (default 1.0) - z
- Type: SystemDouble
Z Scale (default 1.0)
Remarks
By default all scales are equal (1.0). By setting
these scales, relative adjustments to the overall
view of the 3D objects can be made. Note that they
are relative to each other. Thus, setting the scaling
to 5,5,5 is the same as 1,1,1. This is typically used
to exaggerate one scale such as Z (1,1,5).
See Also