|
| 1 | +using UnityEngine; |
| 2 | + |
| 3 | +namespace NugetForUnity |
| 4 | +{ |
| 5 | + /// <summary> |
| 6 | + /// Extension methods for manipulating Rect objects. |
| 7 | + /// </summary> |
| 8 | + internal static class RectHelper |
| 9 | + { |
| 10 | + /// <summary> |
| 11 | + /// Expands the boundaries of the Rect by a specified value in all directions. |
| 12 | + /// </summary> |
| 13 | + /// <param name="rect">The rect to update.</param> |
| 14 | + /// <param name="value">The value to add.</param> |
| 15 | + /// <returns>The updated Rect.</returns> |
| 16 | + public static Rect Expand(this Rect rect, float value) |
| 17 | + { |
| 18 | + rect.xMin -= value; |
| 19 | + rect.xMax += value; |
| 20 | + rect.yMin -= value; |
| 21 | + rect.yMax += value; |
| 22 | + return rect; |
| 23 | + } |
| 24 | + |
| 25 | + /// <summary> |
| 26 | + /// Expands the Rect horizontally by a specified value. |
| 27 | + /// </summary> |
| 28 | + /// <param name="rect">The rect to update.</param> |
| 29 | + /// <param name="value">The value to add.</param> |
| 30 | + /// <returns>The updated Rect.</returns> |
| 31 | + public static Rect ExpandX(this Rect rect, float value) |
| 32 | + { |
| 33 | + rect.xMin -= value; |
| 34 | + rect.xMax += value; |
| 35 | + return rect; |
| 36 | + } |
| 37 | + |
| 38 | + /// <summary> |
| 39 | + /// Expands the Rect vertically by a specified value. |
| 40 | + /// </summary> |
| 41 | + /// <param name="rect">The rect to update.</param> |
| 42 | + /// <param name="value">The value to add.</param> |
| 43 | + /// <returns>The updated Rect.</returns> |
| 44 | + public static Rect ExpandY(this Rect rect, float value) |
| 45 | + { |
| 46 | + rect.yMin -= value; |
| 47 | + rect.yMax += value; |
| 48 | + return rect; |
| 49 | + } |
| 50 | + |
| 51 | + /// <summary> |
| 52 | + /// Adds a specified value to the X-coordinate of the Rect. |
| 53 | + /// </summary> |
| 54 | + /// <param name="rect">The rect to update.</param> |
| 55 | + /// <param name="value">The value to add.</param> |
| 56 | + /// <returns>The updated Rect.</returns> |
| 57 | + public static Rect AddX(this Rect rect, float value) |
| 58 | + { |
| 59 | + rect.x += value; |
| 60 | + return rect; |
| 61 | + } |
| 62 | + |
| 63 | + /// <summary> |
| 64 | + /// Adds a specified value to the Y-coordinate of the Rect. |
| 65 | + /// </summary> |
| 66 | + /// <param name="rect">The rect to update.</param> |
| 67 | + /// <param name="value">The value to add.</param> |
| 68 | + /// <returns>The updated Rect.</returns> |
| 69 | + public static Rect AddY(this Rect rect, float value) |
| 70 | + { |
| 71 | + rect.y += value; |
| 72 | + return rect; |
| 73 | + } |
| 74 | + |
| 75 | + /// <summary> |
| 76 | + /// Sets the width of the Rect to a specified value. |
| 77 | + /// </summary> |
| 78 | + /// <param name="rect">The rect to update.</param> |
| 79 | + /// <param name="value">The value to set.</param> |
| 80 | + /// <returns>The updated Rect.</returns> |
| 81 | + public static Rect SetWidth(this Rect rect, float value) |
| 82 | + { |
| 83 | + rect.width = value; |
| 84 | + return rect; |
| 85 | + } |
| 86 | + |
| 87 | + /// <summary> |
| 88 | + /// Sets the height of the Rect to a specified value. |
| 89 | + /// </summary> |
| 90 | + /// <param name="rect">The rect to update.</param> |
| 91 | + /// <param name="value">The value to set.</param> |
| 92 | + /// <returns>The updated Rect.</returns> |
| 93 | + public static Rect SetHeight(this Rect rect, float value) |
| 94 | + { |
| 95 | + rect.height = value; |
| 96 | + return rect; |
| 97 | + } |
| 98 | + } |
| 99 | +} |
0 commit comments