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_ipo_types.h
parent4be752a93cf37700668c604296f37ea08248f13b (diff)
Cleanup: trailing space for DNA headers
Diffstat (limited to 'source/blender/makesdna/DNA_ipo_types.h')
-rw-r--r--source/blender/makesdna/DNA_ipo_types.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/blender/makesdna/DNA_ipo_types.h b/source/blender/makesdna/DNA_ipo_types.h
index 5ba822616eb..f97935a09a1 100644
--- a/source/blender/makesdna/DNA_ipo_types.h
+++ b/source/blender/makesdna/DNA_ipo_types.h
@@ -24,7 +24,7 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
-
+
/** \file DNA_ipo_types.h
* \ingroup DNA
* \deprecated
@@ -32,7 +32,7 @@
* which has (as of 2.50) been replaced with a completely new system by Joshua Leung (aligorith). All defines,
* etc. are only still maintained to provide backwards compatibility for old files.
*/
-
+
#ifndef __DNA_IPO_TYPES_H__
#define __DNA_IPO_TYPES_H__
@@ -53,7 +53,7 @@
typedef struct IpoDriver {
struct Object *ob; /* target/driver ob */
short blocktype, adrcode; /* sub-channel to use */
-
+
short type, flag; /* driver settings */
char name[128]; /* bone, or python expression here */
} IpoDriver;
@@ -63,7 +63,7 @@ typedef struct IpoDriver {
/* IPO Curve */
typedef struct IpoCurve {
struct IpoCurve *next, *prev;
-
+
struct BPoint *bp; /* array of BPoints (sizeof(BPoint) * totvert) - i.e. baked/imported data */
struct BezTriple *bezt; /* array of BezTriples (sizeof(BezTriple) * totvert) - i.e. user-editable keyframes */
@@ -75,10 +75,10 @@ typedef struct IpoCurve {
short flag, rt; /* flag= settings; rt= ??? */
float ymin, ymax; /* minimum/maximum y-extents for curve */
unsigned int bitmask; /* ??? */
-
+
float slide_min, slide_max; /* minimum/maximum values for sliders (in action editor) */
float curval; /* value of ipo-curve for current frame */
-
+
IpoDriver *driver; /* pointer to ipo-driver for this curve */
} IpoCurve;
@@ -87,10 +87,10 @@ typedef struct IpoCurve {
/* IPO Data-Block */
typedef struct Ipo {
ID id;
-
+
ListBase curve; /* A list of IpoCurve structs in a linked list. */
rctf cur; /* Rect defining extents of keyframes? */
-
+
short blocktype, showkey; /* blocktype: self-explanatory; showkey: either 0 or 1 (show vertical yellow lines for editing) */
short muteipo, pad; /* muteipo: either 0 or 1 (whether ipo block is muted) */
} Ipo;
@@ -475,7 +475,7 @@ typedef struct Ipo {
#define IPO_LIN 1
#define IPO_BEZ 2
/* not used yet */
-#define IPO_MIXED 3
+#define IPO_MIXED 3
/* icu->extrap */
#define IPO_HORIZ 0
@@ -496,7 +496,7 @@ typedef struct Ipo {
/* ---------- IPO Drivers ----------- */
/* offset in driver->name for finding second posechannel for rot-diff */
-#define DRIVER_NAME_OFFS 32
+#define DRIVER_NAME_OFFS 32
/* driver->type */
#define IPO_DRIVER_TYPE_NORMAL 0