// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit { /// /// Default options for how to distribute interpolated points in a line renderer /// public enum InterpolationMode { /// /// Specify the number of interpolation steps manually /// FromSteps = 0, /// /// Create steps based on total length of line + manually specified length /// FromLength, /// /// Create steps based on total length of line + animation curve /// FromCurve } }