Scale
[ Interface ]
export interface Scale {
transformType: 'Scale';
x?: number;
y?: number;
z?: number;
}
This interface implements the TcHmi.Transform interface.
Properties
Name | Type | Description |
---|---|---|
transformType | 'Scale' | Keyword |
x [ optional ] | Scaling in x-direction | |
y [ optional ] | Scaling in y-direction | |
z [ optional ] | Scaling in z-direction |
Available from 1.8 |