aboutsummaryrefslogtreecommitdiff
path: root/core/math/geometry.h
diff options
context:
space:
mode:
authorJuan Linietsky2014-10-03 00:10:51 -0300
committerJuan Linietsky2014-10-03 00:10:51 -0300
commitb24fe3dd206ce391ec4c5f68d32fc2259f275563 (patch)
tree5d05b14d21ba1c8a484f9b7f3739a63f42ca082d /core/math/geometry.h
parent870c075ebf67749b21b6cc0c705088bbe273f1bb (diff)
downloadgodot-b24fe3dd206ce391ec4c5f68d32fc2259f275563.tar.gz
godot-b24fe3dd206ce391ec4c5f68d32fc2259f275563.tar.zst
godot-b24fe3dd206ce391ec4c5f68d32fc2259f275563.zip
Diffstat (limited to 'core/math/geometry.h')
-rw-r--r--core/math/geometry.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/math/geometry.h b/core/math/geometry.h
index 5b21c25be..48713fb91 100644
--- a/core/math/geometry.h
+++ b/core/math/geometry.h
@@ -826,7 +826,9 @@ public:
static DVector<Plane> build_box_planes(const Vector3& p_extents);
static DVector<Plane> build_cylinder_planes(float p_radius, float p_height, int p_sides, Vector3::Axis p_axis=Vector3::AXIS_Z);
static DVector<Plane> build_capsule_planes(float p_radius, float p_height, int p_sides, int p_lats, Vector3::Axis p_axis=Vector3::AXIS_Z);
-
+
+ static void make_atlas(const Vector<Size2i>& p_rects,Vector<Point2i>& r_result, Size2i& r_size);
+
};