You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <summary>General STL extendsions for working with facets and vertices.</summary>
publicstaticclassExtensions
{
/// <summary>Shifts the vertices within the <paramref name="facets"/> enumerable by <paramref name="x"/>, <paramref name="y"/> and <paramref name="z"/>.</summary>
/// <param name="facets">The vertices within these facets will be shifted.</param>
/// <param name="x">The amount to shift the vertices along the X axis.</param>
/// <param name="y">The amount to shift the vertices along the Y axis.</param>
/// <param name="z">The amount to shift the vertices along the Z axis.</param>
/// <summary>Shifts the vertices within the <paramref name="facets"/> enumerable by the X, Y and Z values in the <paramref name="shift"/> parameter.</summary>
/// <param name="facets">The vertices to be shifted.</param>
/// <param name="shift">The amount to shift each vertex.</param>