arx-level-generator
Version:
A tool for creating Arx Fatalis maps
9 lines (8 loc) • 332 B
TypeScript
import { ArxRotation } from 'arx-convert/types';
import { Euler, EulerOrder } from 'three';
export declare class Rotation extends Euler {
static fromArxRotation({ a, b, g }: ArxRotation): Rotation;
static fromThreeJsEuler(euler: Euler): Rotation;
reorder(newOrder: EulerOrder): this;
toArxRotation(): ArxRotation;
}