Пример #1
0
        public override bool Equals(ForeignFace other)
        {
            if (other == null)
            {
                return(false);
            }
            if (other == this)
            {
                return(true);
            }

            var otherFace = other as BezierPatchForeignFace;

            return(otherFace != null && otherFace.surface == surface);
        }
 public BezierPatchForeignLoop(ForeignFace parent)
     : base(parent)
 {
 }
        public override bool Equals(ForeignFace other)
        {
            if (other == null)
                return false;
            if (other == this)
                return true;

            var otherFace = other as BezierPatchForeignFace;
            return otherFace != null && otherFace.surface == surface;
        }
Пример #4
0
 public BezierPatchForeignLoop(ForeignFace parent)
     : base(parent)
 {
 }