Scale
Inherits from: Transform
Overview
This class represents an Affine object that scales coordinates by the specified factors. The matrix representing the scaling transformation is as follows:
[ x 0 0 0 ]
[ 0 y 0 0 ]
[ 0 0 z 0 ]
Profile: common
Variable Summary
| name | type | Default Value | description |
|---|---|---|---|
| x | Number | 1.0 |
Defines the factor by which coordinates are scaled along the X axis direction. The default value is |
| y | Number | 1.0 |
Defines the factor by which coordinates are scaled along the Y axis direction. The default value is |
| z | Number | 1.0 |
Defines the factor by which coordinates are scaled along the Z axis direction. The default value is |
| pivotX | Number | 0.0 |
Defines the X coordinate about which point the scale occurs. |
| pivotY | Number | 0.0 |
Defines the Y coordinate about which point the scale occurs. |
| pivotZ | Number | 0.0 |
Defines the Z coordinate about which point the scale occurs. |
