summaryrefslogtreecommitdiffstats
path: root/editor/editor_atlas_packer.cpp
diff options
context:
space:
mode:
authorA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-03-03 12:49:08 +0100
committerA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-03-20 13:47:42 +0100
commit79ba22a73f238ebd110fc5f3744c3c12a9a59475 (patch)
treeff5d57ddb759c04297aa6482cdc389ca8bc0c2cf /editor/editor_atlas_packer.cpp
parentfe01776f05b1787b28b4a270d53037a3c25f4ca2 (diff)
downloadredot-engine-79ba22a73f238ebd110fc5f3744c3c12a9a59475.tar.gz
Use `Vector*` component-wise `min/max/clamp` functions where applicable
Diffstat (limited to 'editor/editor_atlas_packer.cpp')
-rw-r--r--editor/editor_atlas_packer.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/editor/editor_atlas_packer.cpp b/editor/editor_atlas_packer.cpp
index 5de4869c88..a0f5f1bf11 100644
--- a/editor/editor_atlas_packer.cpp
+++ b/editor/editor_atlas_packer.cpp
@@ -72,8 +72,7 @@ void EditorAtlasPacker::chart_pack(Vector<Chart> &charts, int &r_width, int &r_h
Vector2 vtx = chart.vertices[chart.faces[j].vertex[k]];
vtx -= aabb.position;
vtx /= divide_by;
- vtx.x = MIN(vtx.x, w - 1);
- vtx.y = MIN(vtx.y, h - 1);
+ vtx = vtx.min(Vector2(w - 1, h - 1));
v[k] = vtx;
}