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 ]

number

Scaling in x-direction

y [ optional ]

number

Scaling in y-direction

z [ optional ]

number

Scaling in z-direction

Scale 1:

Available from 1.8