mixedreality/com.microsoft.mixedreality..../Core/Definitions/Lines/LinePointTransformMode.cs

20 lines
596 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace Microsoft.MixedReality.Toolkit
{
/// <summary>
/// Defines how a base line data provider will transform its points
/// </summary>
public enum LinePointTransformMode
{
/// <summary>
/// Use the local line transform. More reliable but with a performance cost.
/// </summary>
UseTransform,
/// <summary>
/// Use a matrix. Lines that are not active and enabled will not update point positions.
/// </summary>
UseMatrix,
}
}