// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit { /// /// Defines how to get an interpolated point along a line /// public enum PointDistributionMode { /// /// Don't adjust placement /// None = 0, /// /// Adjust placement automatically (default) /// Auto, /// /// Place based on distance /// DistanceSingleValue, /// /// Place based on curve /// DistanceCurveValue, } }