public override TLines Clone() { TLines tmpLines = new TLines(this.mPoints, this.FigColor, this.factory); tmpLines.layer = this.layer; return(tmpLines); }
public bool isCrossed(TLines yline) { GeometryRelation GetResult = curGeometry.Compare(yline.curGeometry); if (GetResult != GeometryRelation.Disjoint && GetResult != GeometryRelation.Unknown) { return(true); } return(false); }