Exemple #1
0
        public override TLines Clone()
        {
            TLines tmpLines = new TLines(this.mPoints, this.FigColor, this.factory);

            tmpLines.layer = this.layer;
            return(tmpLines);
        }
Exemple #2
0
        public bool isCrossed(TLines yline)
        {
            GeometryRelation GetResult = curGeometry.Compare(yline.curGeometry);

            if (GetResult != GeometryRelation.Disjoint && GetResult != GeometryRelation.Unknown)
            {
                return(true);
            }
            return(false);
        }