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-05-01use 'normal' orientation rather then 'local' with individual origins to use ↵Campbell Barton
the per-element axis-matrix.
2013-04-22fix for scaling on individual center in mesh editmode when the object has ↵Campbell Barton
non-unit matrix. (own error when adding support for axismtx in editmode)
2013-04-12fix for own recent addition of transform indervidual-axis in editmode, not ↵Campbell Barton
working if the object was rotated.
2013-04-11correction to own recent changes to exitmode using axis-matrix, fallback to ↵Campbell Barton
old behavior for editmodes where the axis-matrix isnt set (curve, surface, lattice)
2013-04-08fix for own mistake in recent adjustments to transform, local without ↵Campbell Barton
individual-origin wasn't working.
2013-04-05code cleanup: include orderCampbell Barton
2013-04-04fix [#34802] Individual Transformation Confusing in Edit ModeCampbell Barton
Individual transformation now works in editmode mesh faces/edge, armature bones and metaballs.
2013-03-12replace sprintf -> strcpy where its not needed.Campbell Barton
2013-03-09add inline function mul_project_m4_v3_zfac() to get the z-depth value from a ↵Campbell Barton
vector & mat4x4
2013-03-09code cleanup: move runtime var zfac out of RegionView3D. rename initgrabz() ↵Campbell Barton
-> ED_view3d_calc_zfac() and have it return the zfac to use.
2013-03-04code cleanup: view3d_clipping_test was making a vector copy for no reason.Campbell Barton
2013-02-19Another huge bunch of new UI translations (some reported by Leon Cheung, ↵Bastien Montagne
thanks!)...
2013-01-15style cleanupCampbell Barton
2012-11-23Fix #33266: Transforming with Y axis constraint didn't apply aspect ratio ↵Sergey Sharybin
correct It first needed to constraint numeric input and then apply aspect correction only, otherwise aspect correction would be applied on a wrong axis.
2012-10-24use min_ii/max_ii over MIN2 MAX2Campbell Barton
2012-08-04mask transforming when a mesh object was in editmode (but had no UV's), failedCampbell Barton
2012-07-25match function names for clip/image spacesCampbell Barton
2012-07-21use fabsf when using floats.Campbell Barton
2012-07-19code cleanup: remove commented includes - mostly from 2.4xCampbell Barton
2012-07-01style cleanup: commentsCampbell Barton
2012-06-29Extended modes for snapping in the node editor.Lukas Toenne
The transform operators in nodes will now use the unselected nodes to generate snapping points. Unlike object snapping, node snapping works for the x/y axes separately and snaps node borders to same borders of unselected nodes. The sensitive area for node borders extends over the whole view2D range, to enable simple alignment of nodes in both x and y direction. For snap points in the node editor an additional enum value is stored to indicate the type of node border (left/right/top/bottom). This works as a constraint on possible node alignments: only same border types align with each other.
2012-06-27style cleanup: also some spelling correction.Campbell Barton
2012-06-11style cleanupCampbell Barton
2012-04-29style cleanup: whitespace / commasCampbell Barton
2012-04-28style cleanup: changes to brace placement / newlines - for/while/if/switchCampbell Barton
2012-03-24style cleanup: follow style guide for formatting of if/for/while loops, and ↵Campbell Barton
else if's
2012-03-08style cleanup - spelling.Campbell Barton
2012-03-07style cleanup - braces & else / if'sCampbell Barton
2012-03-06style cleanup, brackets in else/if, some indentation.Campbell Barton
2012-03-04style cleanup - comment spelling + translate some dutch.Campbell Barton
2012-03-03style cleanup - use aligned * prefixed blocks for descriptive comments (was ↵Campbell Barton
already used a lot and part of proposed style guide).
2012-01-11use BLI_strncpy and BLI_snprintf when the size of the string is known.Campbell Barton
fix for sequencer unique naming which was missed with string length update.
2011-12-17style edit only - move parenthesis onto second line of function definition ↵Campbell Barton
(in keeping with most of blenders code) also split some long lines in own code.
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-09-12replace VECCOPY -> copy_v3_v3, added copy_v*_v*_short too for typesafe ↵Campbell Barton
copying, some parts of the code are copying float -> short normals without scaling. fix coming next.
2011-06-27Minor warning cleanup & fixCampbell Barton
- comment/remove assignments from values to themselves. - add case break statements (no functional change but some source code checkers notice). - fix python errors when the sculpt brush is None.
2011-05-12for bug [#27358] Transform bug when transform > 500Campbell Barton
mouse coords would with cont. grab would wrap at short. use mouse coords as int rather then short. this problem still happens on linux because of XTranslateCoordinates
2011-04-29fix [#27057] In cam perspective, world-axis-locked xform of an obj at cam ↵Campbell Barton
loc fails when constraining the axis, ensure central point of the transformation is not too close to the view origin since this fails.
2011-04-21converted more mixed tab/space indentations to tabs. only whitespace changes.Campbell Barton
2011-04-20while looking into [#27057] noticed when the view and the transform center ↵Campbell Barton
are 0,0,0 it gives NAN values.
2011-03-28transform: floats were being implicitly promoted to doubles, adjust to use ↵Campbell Barton
floats. also use macros RAD2DEGF & DEG2RADF.
2011-02-27doxygen: blender/editors tagged.Nathan Letwory
2011-02-23doxygen: prevent GPL license block from being parsed as doxygen comment.Nathan Letwory
2011-02-14made most variables which are only used in a single file and not defined in ↵Campbell Barton
header static for blenlib, blenkernel and editors.
2011-01-07remove references to BKE_utildefines where its not needed.Campbell Barton
- move GS() define into DNA_ID.h - add BLI_utildefines as an automatic include with makesrna generated files.
2011-01-07split BKE_utildefines.h, now it only has blender specific defines like GS() ↵Campbell Barton
MAKE_ID, FILE_MAXDIR, moved the generic defines to BLI_utildefines.h. no functional changes.
2010-12-20Bugfix: new strict code for UI_make_axis_color() caused constraintTon Roosendaal
lines in Transform to not draw.
2010-11-28minor changes to the python api.Campbell Barton
- pep8 script was giving an error on non utf8 scons source files. - use PyList_SET_ITEM macro when list type is ensured. - all mathutils types use subtypes to create new types when available. - use defines MAT3_UNITY, MAT4_UNITY to initialize unit matrices.
2010-11-16bugfix [#24509] UV/Image Editor: selected elements move not as specifiedCampbell Barton
2010-11-10bugfix [#23710] 'repeat last' button doesnt' work with extrude along axes ↵Campbell Barton
other than Z