예제 #1
0
 /// <summary>
 ///     Translates a <see cref='Point3' /> by the negative of a given <see cref='Size3' /> .
 /// </summary>
 /// <param name="point">The point.</param>
 /// <param name="size">The size.</param>
 /// <returns>
 ///     The result of the operator.
 /// </returns>
 public static Point3 Subtract(Point3 point, Size3 size)
 {
     return(new Point3(point.X - size.Width, point.Y - size.Height, point.Z - size.Depth));
 }
예제 #2
0
 /// <summary>
 ///     Translates a <see cref='Point3' /> by a given <see cref='Size3' />.
 /// </summary>
 /// <param name="point">The point.</param>
 /// <param name="size">The size.</param>
 /// <returns>
 ///     The result of the operator.
 /// </returns>
 public static Point3 Add(Point3 point, Size3 size)
 {
     return(new Point3(point.X + size.Width, point.Y + size.Height, point.Z + size.Depth));
 }