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