UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

20 lines (19 loc) 456 B
"use strict"; // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. Object.defineProperty(exports, "__esModule", { value: true }); /** * Represents a rotation structure with pitch and yaw * components. */ class PitchYawRotation { /** * Pitch (up-and-down) element of this rotation. */ "pitch"; /** * Yaw component (left-to-right) of this position. */ "yaw"; } exports.default = PitchYawRotation;