本文整理汇总了C#中Vector4.EndWith方法的典型用法代码示例。如果您正苦于以下问题:C# Vector4.EndWith方法的具体用法?C# Vector4.EndWith怎么用?C# Vector4.EndWith使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Vector4
的用法示例。
在下文中一共展示了Vector4.EndWith方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ConvertToNonPeriodic
/// <summary>
/// We want to convert the periodic formulation into a non periodic formulation. To do
/// this we follow the instructions from Guilia at DevDept.
///
/// the things that need to be done to get the correct curve in Eyeshot are:
/// - add one last control point equal to the first to close the curve
/// - multiply the(x, y, z) coordinates of each control point by its w coordinate
/// - the degree p of your curve is given by the multiplicity of the last knot in the periodic knot vector, therefore you need to increase by 1 the multiplicity of the last knot, and by p the multiplicity of the first knot.
/// </summary>
/// <param name="controlPoints4D"></param>
/// <param name="knotArray"></param>
/// <param name="degree"></param>
private static void ConvertToNonPeriodic(ref Vector4[] controlPoints4D, ref double[] knotArray, int degree)
{
controlPoints4D = controlPoints4D.EndWith(controlPoints4D.First()).ToArray();
var last = knotArray.Last();
var first = knotArray.First();
knotArray = Enumerable.Repeat(first, degree).Concat(knotArray).EndWith(last).ToArray();
// We need to do some special handling to make it non periodic
}