예제 #1
0
        public override IList <Relation2D> ByPass(params Point2D[] points)
        {
            Equal rel = new Equal(points);

            return(new List <Relation2D>()
            {
                rel
            });
        }
예제 #2
0
파일: Equal.cs 프로젝트: ondrej11/o106
 public override IList<Relation2D> ByPass(params Point2D[] points)
 {
     Equal rel = new Equal(points);
     return new List<Relation2D>() { rel };
 }