예제 #1
0
        public void Minimize(IPointZ other)
        {
            Minimize((IPointM)other);

            Z = Math.Min(Z, other.Z);
        }
예제 #2
0
        public void Maximize(IPointZ other)
        {
            Maximize((IPointM)other);

            Z = Math.Max(Z, other.Z);
        }
예제 #3
0
 public PointZ(IPointZ point) : this((IPointM)point)
 {
     Z = point.Z;
 }