Translate
[ Interface ]
export interface Translate {
transformType: 'Translate';
x?: number;
xUnit?: TcHmi.DimensionUnit;
y?: number;
yUnit?: TcHmi.DimensionUnit;
z?: number;
zUnit?: TcHmi.DimensionUnit;
}
This interface implements the TcHmi.Transform interface.
Properties
Name | Type | Description |
---|---|---|
transformType | 'Translate' | Keyword |
x [ optional ] | Numeric value of the x translation | |
xUnit [ optional ] | Unit of the x translation | |
y [ optional ] | Numeric value of the y translation | |
yUnit [ optional ] | Unit of the y translation | |
z [ optional ] | Numeric value of the z translation | |
zUnit [ optional ] | Unit of the z translation |
Available from 1.8 |