@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
31 lines (30 loc) • 572 B
TypeScript
import { Vector3 } from "./math.vector.js";
/** Defines supported spaces */
export declare enum Space {
/** Local (object) space */
LOCAL = 0,
/** World space */
WORLD = 1,
/** Bone space */
BONE = 2
}
/** Defines the 3 main axes */
export declare class Axis {
/** X axis */
static X: Vector3;
/** Y axis */
static Y: Vector3;
/** Z axis */
static Z: Vector3;
}
/**
* Defines cartesian components.
*/
export declare enum Coordinate {
/** X axis */
X = 0,
/** Y axis */
Y = 1,
/** Z axis */
Z = 2
}