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:
authorJoshua Leung <aligorith@gmail.com>2012-04-29 17:20:28 +0400
committerJoshua Leung <aligorith@gmail.com>2012-04-29 17:20:28 +0400
commitd3d93ee4a2bd1a111afc010a73d6f5b7c04b4d04 (patch)
tree20c721194c2b300bcd419bc23ebb623153eab48d /source/blender/editors/space_graph/space_graph.c
parent40489e378d33517997cd8b5502102c42c9c6d905 (diff)
Code cleanups - whitespace
Diffstat (limited to 'source/blender/editors/space_graph/space_graph.c')
-rw-r--r--source/blender/editors/space_graph/space_graph.c90
1 files changed, 45 insertions, 45 deletions
diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c
index 6214201a87d..447003804ce 100644
--- a/source/blender/editors/space_graph/space_graph.c
+++ b/source/blender/editors/space_graph/space_graph.c
@@ -551,21 +551,21 @@ static void graph_refresh(const bContext *C, ScrArea *sa)
* TODO: find a way to module the hue so that not all curves have same color...
*/
float *col= fcu->color;
-
+
switch (fcu->array_index) {
- case 0:
- col[0]= 1.0f; col[1]= 0.0f; col[2]= 0.0f;
- break;
- case 1:
- col[0]= 0.0f; col[1]= 1.0f; col[2]= 0.0f;
- break;
- case 2:
- col[0]= 0.0f; col[1]= 0.0f; col[2]= 1.0f;
- break;
- default:
- /* 'unknown' color - bluish so as to not conflict with handles */
- col[0]= 0.3f; col[1]= 0.8f; col[2]= 1.0f;
- break;
+ case 0:
+ col[0] = 1.0f; col[1] = 0.0f; col[2] = 0.0f;
+ break;
+ case 1:
+ col[0] = 0.0f; col[1] = 1.0f; col[2] = 0.0f;
+ break;
+ case 2:
+ col[0] = 0.0f; col[1] = 0.0f; col[2] = 1.0f;
+ break;
+ default:
+ /* 'unknown' color - bluish so as to not conflict with handles */
+ col[0] = 0.3f; col[1] = 0.8f; col[2] = 1.0f;
+ break;
}
}
break;
@@ -596,55 +596,55 @@ void ED_spacetype_ipo(void)
st->spaceid= SPACE_IPO;
strncpy(st->name, "Graph", BKE_ST_MAXNAME);
- st->new= graph_new;
- st->free= graph_free;
- st->init= graph_init;
- st->duplicate= graph_duplicate;
- st->operatortypes= graphedit_operatortypes;
- st->keymap= graphedit_keymap;
- st->listener= graph_listener;
- st->refresh= graph_refresh;
+ st->new = graph_new;
+ st->free = graph_free;
+ st->init = graph_init;
+ st->duplicate = graph_duplicate;
+ st->operatortypes = graphedit_operatortypes;
+ st->keymap = graphedit_keymap;
+ st->listener = graph_listener;
+ st->refresh = graph_refresh;
/* regions: main window */
- art= MEM_callocN(sizeof(ARegionType), "spacetype graphedit region");
+ art = MEM_callocN(sizeof(ARegionType), "spacetype graphedit region");
art->regionid = RGN_TYPE_WINDOW;
- art->init= graph_main_area_init;
- art->draw= graph_main_area_draw;
- art->listener= graph_region_listener;
- art->keymapflag= ED_KEYMAP_VIEW2D|ED_KEYMAP_MARKERS|ED_KEYMAP_ANIMATION|ED_KEYMAP_FRAMES;
+ art->init = graph_main_area_init;
+ art->draw = graph_main_area_draw;
+ art->listener = graph_region_listener;
+ art->keymapflag = ED_KEYMAP_VIEW2D|ED_KEYMAP_MARKERS|ED_KEYMAP_ANIMATION|ED_KEYMAP_FRAMES;
BLI_addhead(&st->regiontypes, art);
/* regions: header */
- art= MEM_callocN(sizeof(ARegionType), "spacetype graphedit region");
+ art = MEM_callocN(sizeof(ARegionType), "spacetype graphedit region");
art->regionid = RGN_TYPE_HEADER;
- art->prefsizey= HEADERY;
- art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_VIEW2D|ED_KEYMAP_FRAMES|ED_KEYMAP_HEADER;
- art->listener= graph_region_listener;
- art->init= graph_header_area_init;
- art->draw= graph_header_area_draw;
+ art->prefsizey = HEADERY;
+ art->keymapflag = ED_KEYMAP_UI|ED_KEYMAP_VIEW2D|ED_KEYMAP_FRAMES|ED_KEYMAP_HEADER;
+ art->listener = graph_region_listener;
+ art->init = graph_header_area_init;
+ art->draw = graph_header_area_draw;
BLI_addhead(&st->regiontypes, art);
/* regions: channels */
- art= MEM_callocN(sizeof(ARegionType), "spacetype graphedit region");
+ art = MEM_callocN(sizeof(ARegionType), "spacetype graphedit region");
art->regionid = RGN_TYPE_CHANNELS;
- art->prefsizex= 200+V2D_SCROLL_WIDTH; /* 200 is the 'standard', but due to scrollers, we want a bit more to fit the lock icons in */
- art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_VIEW2D|ED_KEYMAP_FRAMES;
- art->listener= graph_region_listener;
- art->init= graph_channel_area_init;
- art->draw= graph_channel_area_draw;
+ art->prefsizex = 200 + V2D_SCROLL_WIDTH; /* 200 is the 'standard', but due to scrollers, we want a bit more to fit the lock icons in */
+ art->keymapflag = ED_KEYMAP_UI|ED_KEYMAP_VIEW2D|ED_KEYMAP_FRAMES;
+ art->listener = graph_region_listener;
+ art->init = graph_channel_area_init;
+ art->draw = graph_channel_area_draw;
BLI_addhead(&st->regiontypes, art);
/* regions: UI buttons */
- art= MEM_callocN(sizeof(ARegionType), "spacetype graphedit region");
+ art = MEM_callocN(sizeof(ARegionType), "spacetype graphedit region");
art->regionid = RGN_TYPE_UI;
- art->prefsizex= 200;
- art->keymapflag= ED_KEYMAP_UI;
- art->listener= graph_region_listener;
- art->init= graph_buttons_area_init;
- art->draw= graph_buttons_area_draw;
+ art->prefsizex = 200;
+ art->keymapflag = ED_KEYMAP_UI;
+ art->listener = graph_region_listener;
+ art->init = graph_buttons_area_init;
+ art->draw = graph_buttons_area_draw;
BLI_addhead(&st->regiontypes, art);