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
AgeCommit message (Collapse)Author
2013-08-27Mask primitivesSergey Sharybin
Currently only circle and square, might be easily extended in the future. New primitives are creating at cursor location. This also implied adding 2d cursor to space clip. Also fix set 2D cursor location which didn't work in image editor's mask mode since 2.67. TODO: draw_image_cursor better be moved to some more generic file, but it's not so much important for now and might be solved later. Thanks Campbell for the review!
2013-07-21Fix crash in adding a new mask point after subdividing an inactive splineSv. Lockal
add_vertex_extrude relies on active spline for containing an active point
2013-03-13code cleanup: use const events for modal and invoke operators.Campbell Barton
2013-01-27Operators name "cleanup"Dalai Felinto
The operator names all show up in the Search button. As such is nicer if they can all have the main words capitalized. e.g. "Snap strips" should be "Snap Strips" "Copy to clipboard" should be "Copy to Clipboard" This was done with a mix of bash tools, regex, and manual work because I'm too rushed into regex :) + fix bge stereo eye separation tooltip
2012-10-18Mask editor: create new mask when trying to create new vertex without active ↵Sergey Sharybin
mask set
2012-10-12quiet some -Wshadow warningsCampbell Barton
2012-09-18code cleanup: warningsCampbell Barton
2012-09-13code cleanup: reduce calls to CTX_ functions inline, add some docs to mask ↵Campbell Barton
rasterizer.
2012-08-25better handle sizes by default for mask mode, now ignore image width/heightCampbell Barton
2012-08-24use the zoom level to set the size for new mask point handle sizes (artist ↵Campbell Barton
request - handles were annoyingly bug when zoomed in)
2012-08-07use -FLT_MAX where FLT_MIN was misusedCampbell Barton
2012-08-05fix for crash when mask editing if there is an active point but no active ↵Campbell Barton
spline.
2012-08-05resolve some issues with curve resolution calculactionCampbell Barton
- resolution could become so high that it would wrap around to a negative number, now check for small numbers before doing float division. - resolution was being calculated in some cases when it already met the clamp value - now this is skipped.
2012-07-31Code cleanup: remove unused codeSergey Sharybin
2012-07-27code cleanup: pass mouse position as int[2] rather then wmEventCampbell Barton
2012-07-27change clip utility function arguments to take space data and region rather ↵Campbell Barton
then the context. this allows a fix to be applied that corrects the helper line in the image view when transforming a mask.
2012-06-19Mark context as const when it's possible and avoid typecasts from const ↵Sergey Sharybin
bContext* to bContext*
2012-06-08- remove redundant NULL checks from mallocn's local linked list functions.Campbell Barton
- minor changes to warning cleanup.
2012-06-07Quite some warnings...Bastien Montagne
2012-06-07adding mask points now adds in the correct place relative to shape keys ↵Campbell Barton
(updating other keys for the new points still needs work though)
2012-06-07code cleanup: remove unused mask argsCampbell Barton
2012-06-05mask point slide now accounts for scaled bezier weights,Campbell Barton
2012-06-05mask editingCampbell Barton
- clear feather weights (alt+s) - fix for glitch where placing the feather would jitter.
2012-06-04abbreviate mask-editing to mask-editCampbell Barton
2012-06-04include cleanup, also raskter wasn't building on osxCampbell Barton
2012-06-04mask merge (initial copy of editor files)Campbell Barton