R3.Math.Edge.Opposite C# (CSharp) Метод

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

Given a vertex index, find the vertex at the other end of the edge.
public Opposite ( int idx ) : int
idx int
Результат int
        public int Opposite( int idx )
        {
            return idx == V1 ? V2 : V1;
        }