Example #1
0
        public void Maximize(IPointM other)
        {
            Maximize((IPoint)other);

            if (this.IsNoDataM())
            {
                M = other.M;
                return;
            }

            if (other.IsNoDataM())
            {
                return;
            }

            M = Math.Max(M, other.M);
        }
Example #2
0
 public static bool IsNoDataM(this IPointM point)
 {
     return(point.M < PointM.NoDataMax);
 }
Example #3
0
 public PointZ(IPointM point) : base(point)
 {
 }
Example #4
0
 public PointM(IPointM point) : this((IPoint)point)
 {
     M = point.M;
 }