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>2008-08-25 10:22:21 +0400
committerJoshua Leung <aligorith@gmail.com>2008-08-25 10:22:21 +0400
commit1ed408e8c6f835571cbe8176b50500d146a143b2 (patch)
tree8ebe2f6c1d24dba1f5a51c3726fda4a15e38ed03 /source/blender/include
parent5e130558498d7001dc9d93731d1567ec56d253fb (diff)
== Grease Pencil - Drawing + Eraser Improvements ==
Drawing Improvements: * Single 'dots' now draw rounded * Strokes being drawn are drawn 'solid' instead of as dotted lines Eraser: * Now operates interactively, so no more wait to see if stuff was erased * An influence circle is now drawn - the radius of this is defined as the thickness^2
Diffstat (limited to 'source/blender/include')
-rw-r--r--source/blender/include/BIF_editview.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/include/BIF_editview.h b/source/blender/include/BIF_editview.h
index d2c6c56d01a..204733a19d6 100644
--- a/source/blender/include/BIF_editview.h
+++ b/source/blender/include/BIF_editview.h
@@ -40,6 +40,7 @@ void arrows_move_cursor(unsigned short event);
void lasso_select_boundbox(struct rcti *rect, short mcords[][2], short moves);
int lasso_inside(short mcords[][2], short moves, short sx, short sy);
int lasso_inside_edge(short mcords[][2], short moves, int x0, int y0, int x1, int y1);
+int edge_inside_circle(short centx, short centy, short rad, short x1, short y1, short x2, short y2);
void borderselect(void);
void circle_select(void);
void deselectall(void);