public void Minimize(IPointZ other) { Minimize((IPointM)other); Z = Math.Min(Z, other.Z); }
public void Maximize(IPointZ other) { Maximize((IPointM)other); Z = Math.Max(Z, other.Z); }
public PointZ(IPointZ point) : this((IPointM)point) { Z = point.Z; }