~ubuntu-branches/ubuntu/utopic/blender/utopic-proposed

« back to all changes in this revision

Viewing changes to source/blender/editors/include/ED_curve.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-04-28 12:11:12 UTC
  • mto: (14.1.6 experimental) (1.5.1)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: package-import@ubuntu.com-20120428121112-2zi0vp8b6vejda8i
Tags: upstream-2.63
ImportĀ upstreamĀ versionĀ 2.63

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 *  \ingroup editors
29
29
 */
30
30
 
31
 
#ifndef ED_CURVE_H
32
 
#define ED_CURVE_H
 
31
#ifndef __ED_CURVE_H__
 
32
#define __ED_CURVE_H__
33
33
 
34
34
struct Base;
35
35
struct bContext;
83
83
void    ED_text_to_object(struct bContext *C, struct Text *text, int split_lines);
84
84
 
85
85
int CU_select_nth(struct Object *obedit, int nth);
86
 
ListBase *ED_curve_editnurbs(struct Curve *cu);
87
86
 
88
87
void ED_curve_beztcpy(struct EditNurb *editnurb, struct BezTriple *dst, struct BezTriple *src, int count);
89
88
void ED_curve_bpcpy(struct EditNurb *editnurb, struct BPoint *dst, struct BPoint *src, int count);
90
89
 
91
 
int ED_curve_updateAnimPaths(struct Object *obedit);
 
90
int ED_curve_updateAnimPaths(struct Curve *cu);
92
91
 
93
92
int ED_curve_actSelection(struct Curve *cu, float center[3]);
94
93
 
95
94
/* debug only */
96
95
void printknots(struct Object *obedit);
97
96
 
98
 
#endif /* ED_CURVE_H */
 
97
#endif /* __ED_CURVE_H__ */
99
98