SharpNav.PolyMesh.IsInteriorEdge C# (CSharp) Метод

IsInteriorEdge() публичный статический Метод

Determines if it is an interior edge with the specified flag.
public static IsInteriorEdge ( int flag ) : bool
flag int The flag.
Результат bool
        public static bool IsInteriorEdge(int flag)
        {
            return (flag & NeighborEdgeFlag) == 0;
        }