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>2018-06-17 18:04:09 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-17 18:04:09 +0300
commit78fbd146f3cd9a5c97307ff6f2d14422e7ae54b9 (patch)
tree62f1519be8e12353cc91f334414c478c015a5491 /source/blender/makesdna/DNA_curve_types.h
parent4be752a93cf37700668c604296f37ea08248f13b (diff)
Cleanup: trailing space for DNA headers
Diffstat (limited to 'source/blender/makesdna/DNA_curve_types.h')
-rw-r--r--source/blender/makesdna/DNA_curve_types.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/source/blender/makesdna/DNA_curve_types.h b/source/blender/makesdna/DNA_curve_types.h
index fa40fd298d7..04395e32717 100644
--- a/source/blender/makesdna/DNA_curve_types.h
+++ b/source/blender/makesdna/DNA_curve_types.h
@@ -110,14 +110,14 @@ typedef struct BevList {
typedef struct BezTriple {
float vec[3][3];
float alfa, weight, radius; /* alfa: tilt in 3D View, weight: used for softbody goal weight, radius: for bevel tapering */
-
+
char ipo; /* ipo: interpolation mode for segment from this BezTriple to the next */
-
+
char h1, h2; /* h1, h2: the handle type of the two handles */
char f1, f2, f3; /* f1, f2, f3: used for selection status */
-
+
char hide; /* hide: used to indicate whether BezTriple is hidden (3D), type of keyframe (eBezTriple_KeyframeType) */
-
+
char easing; /* easing: easing type for interpolation mode (eBezTriple_Easing) */
float back; /* BEZT_IPO_BACK */
float amplitude, period; /* BEZT_IPO_ELASTIC */
@@ -148,14 +148,14 @@ typedef struct Nurb {
short resolu, resolv; /* tessellation resolution in the U or V directions */
short orderu, orderv;
short flagu, flagv;
-
+
float *knotsu, *knotsv;
BPoint *bp;
BezTriple *bezt;
short tilt_interp; /* KEY_LINEAR, KEY_CARDINAL, KEY_BSPLINE */
short radius_interp;
-
+
/* only used for dynamically generated Nurbs created from OB_FONT's */
int charidx;
} Nurb;
@@ -187,19 +187,19 @@ typedef struct EditNurb {
typedef struct Curve {
ID id;
- struct AnimData *adt; /* animation data (must be immediately after id for utilities to use it) */
-
+ struct AnimData *adt; /* animation data (must be immediately after id for utilities to use it) */
+
struct BoundBox *bb;
-
+
ListBase nurb; /* actual data, called splines in rna */
-
+
EditNurb *editnurb; /* edited data, not in file, use pointer so we can check for it */
-
+
struct Object *bevobj, *taperobj, *textoncurve;
struct Ipo *ipo DNA_DEPRECATED; /* old animation system, deprecated for 2.5 */
struct Key *key;
struct Material **mat;
-
+
/* texture space, copied as one block in editobject.c */
float loc[3];
float size[3];
@@ -215,7 +215,7 @@ typedef struct Curve {
short bevresol, totcol;
int flag;
float width, ext1, ext2;
-
+
/* default */
short resolu, resolv;
short resolu_ren, resolv_ren;
@@ -250,10 +250,10 @@ typedef struct Curve {
struct VFont *vfontb;
struct VFont *vfonti;
struct VFont *vfontbi;
-
+
struct TextBox *tb;
int totbox, actbox;
-
+
struct CharInfo *strinfo;
struct CharInfo curinfo;
/* font part end */
@@ -406,7 +406,7 @@ typedef enum eBezTriple_Interpolation {
BEZT_IPO_CONST = 0, /* constant interpolation */
BEZT_IPO_LIN = 1, /* linear interpolation */
BEZT_IPO_BEZ = 2, /* bezier interpolation */
-
+
/* easing equations */
BEZT_IPO_BACK = 3,
BEZT_IPO_BOUNCE = 4,
@@ -423,7 +423,7 @@ typedef enum eBezTriple_Interpolation {
/* easing modes (used only for Keyframes - BezTriple->easing) */
typedef enum eBezTriple_Easing {
BEZT_IPO_EASE_AUTO = 0,
-
+
BEZT_IPO_EASE_IN = 1,
BEZT_IPO_EASE_OUT = 2,
BEZT_IPO_EASE_IN_OUT = 3,