Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-09-11 03:11:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-09-11 03:11:58 +0400
commit44ec0b0aabef4c8d054680281747ea33320f0961 (patch)
tree99db9a98cca6c1602767515e09ef09ed3f520ccd /source/blender/blenlib/BLI_convexhull2d.h
parentf171f4e270bed27a827067a5e438d3d6379954f7 (diff)
uv-pack operator: option to rotate uv islands to fit in the optimal rectangle when packing.
Diffstat (limited to 'source/blender/blenlib/BLI_convexhull2d.h')
-rw-r--r--source/blender/blenlib/BLI_convexhull2d.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_convexhull2d.h b/source/blender/blenlib/BLI_convexhull2d.h
index 30de786eb96..d6b5acbb95e 100644
--- a/source/blender/blenlib/BLI_convexhull2d.h
+++ b/source/blender/blenlib/BLI_convexhull2d.h
@@ -28,4 +28,6 @@
int BLI_convexhull_2d_presorted(const float (*points)[2], const int n, int r_points[]);
int BLI_convexhull_2d(const float (*points)[2], const int n, int r_points[]);
+float BLI_convexhull_aabb_fit_2d(const float (*points_hull)[2], unsigned int n);
+
#endif /* __BLI_CONVEXHULL2D__ */