R3.Math.Edge.Opposite C# (CSharp) Method

Opposite() public method

Given a vertex index, find the vertex at the other end of the edge.
public Opposite ( int idx ) : int
idx int
return int
        public int Opposite( int idx )
        {
            return idx == V1 ? V2 : V1;
        }