// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.Utilities { /// /// Rotational Pivot axis for orientating an object /// public enum PivotAxis { // Most common options, preserving current functionality with the same enum order. XY, Y, // Rotate about an individual axis. X, Z, // Rotate about a pair of axes. XZ, YZ, // Rotate about all axes. Free } }