node-insim
Version:
An InSim library for NodeJS with TypeScript support
18 lines (17 loc) • 501 B
TypeScript
import { Struct } from '../packets/base/Struct';
export declare class OutSimMain extends Struct {
/** 3 floats, angular velocity vector */
AngVel: number[];
/** anticlockwise from above (Z) */
Heading: number;
/** anticlockwise from right (X) */
Pitch: number;
/** anticlockwise from front (Y) */
Roll: number;
/** 3 floats X, Y, Z */
Accel: number[];
/** 3 floats X, Y, Z */
Vel: number[];
/** 3 ints X, Y, Z (1m = 65536) */
Pos: number[];
}