BananaMpq.Geometry.IndexedTriangleWithNormal.ToTriangleWithNormal C# (CSharp) Метод

ToTriangleWithNormal() публичный Метод

public ToTriangleWithNormal ( IList vertices ) : TriangleWithNormal
vertices IList
Результат TriangleWithNormal
        public TriangleWithNormal ToTriangleWithNormal(IList<Vector3> vertices)
        {
            return new TriangleWithNormal
            {
                A = vertices[A],
                B = vertices[B],
                C = vertices[C],
                Normal = Normal
            };
        }