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>2014-03-11 10:12:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-11 10:16:08 +0400
commit4cfd14644ba271a1a58abed4da606657385ca6ce (patch)
tree5d025f1e9adee6526d104444e6f24b9a4adfc5c2 /source/blender/blenkernel/BKE_curve.h
parent57dba739176153e052d77611ff0e554f05984686 (diff)
3D Text: textbox selection while in editmode
D395 from Henrik Aarnio with some improvements.
Diffstat (limited to 'source/blender/blenkernel/BKE_curve.h')
-rw-r--r--source/blender/blenkernel/BKE_curve.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_curve.h b/source/blender/blenkernel/BKE_curve.h
index a9d5ea75208..4b8c557f0dd 100644
--- a/source/blender/blenkernel/BKE_curve.h
+++ b/source/blender/blenkernel/BKE_curve.h
@@ -43,6 +43,8 @@ struct Nurb;
struct Object;
struct Scene;
struct Path;
+struct TextBox;
+struct rctf;
typedef struct CurveCache {
ListBase disp;
@@ -113,6 +115,8 @@ void BKE_curve_bevel_make(struct Scene *scene, struct Object *ob, struct ListBa
void BKE_curve_forward_diff_bezier(float q0, float q1, float q2, float q3, float *p, int it, int stride);
+void BKE_curve_rect_from_textbox(const struct Curve *cu, const struct TextBox *tb, struct rctf *r_rect);
+
/* ** Nurbs ** */
int BKE_nurbList_index_get_co(struct ListBase *editnurb, const int index, float r_co[3]);