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
2011-08-19warning cleanup for -Wdouble-promotionCampbell Barton
2011-08-18fix for bad array access in transform operator, was assigning an array to a ↵Campbell Barton
single float operator value.
2011-08-07removed old ndof transform code, to be replaced with modern stuff in 2.6Mike Erwin
2011-08-03Crash in MMB moves (etc): commit of today was reading NULL pointer.Ton Roosendaal
2011-08-03fix [#28135] Edge slide changes UVCampbell Barton
2011-08-03ndof changes: turned off 3D mouse during transform, removed timing bug in ↵Mike Erwin
image/uv, added option for zoom axis (up/down vs. forward/backward)
2011-08-02Made wmNDOFMotionData use a vector rather then xyz members, makes it nicer ↵Campbell Barton
to use with math functions. ndof_to_angle_axis and ndof_to_quat now use math functions.
2011-08-02svn merge -r38814:38905 ↵merwin-spacenavMike Erwin
https://svn.blender.org/svnroot/bf-blender/trunk/blender .
2011-07-30bpy fix for crash/assert on running dir() on a non collection property + ↵Campbell Barton
some other minor corrections.
2011-07-29svn merge -r38753:38813 ↵Nathan Letwory
https://svn.blender.org/svnroot/bf-blender/trunk/blender .
2011-07-28only initialize snap from the scene settings for view3d and image spaces ↵Campbell Barton
since snap in the 3D view was enabling snap in the graph editor and sequencer without a button to disable it in those spaces.
2011-07-27minor warning fixes for clang-static-checkerCampbell Barton
2011-07-27svn merge -r38558:38752 ↵Nathan Letwory
https://svn.blender.org/svnroot/bf-blender/trunk/blender .
2011-07-27fix [#28066] Unchecking 'self project' messes up 'Snap to Vertex'Campbell Barton
this option is useful for all non-grid snapping modes (when in editmode) so make available in those cases too.
2011-07-26correct misc warningsCampbell Barton
2011-07-25Fix #28079: UV propertional editing was incorrectly influenced by theBrecht Van Lommel
mesh X mirror option.
2011-07-25removed old ndof transform stuff, added experimental ndof nav during ↵Mike Erwin
transform (might disable for release)
2011-07-22Need some fun once a while:Ton Roosendaal
On dragging a non-connected node on a noodle, it will insert it. Functionality tweaks are possible, but it already feels non-intrusive. Rules: - Insertion only when a single noodle is intersecting with node. - Default connects first matching socket type. - If no socket match, it connects the first.
2011-07-22fix [#28052] PET: Shift-O cycling skips "random falloff"Campbell Barton
2011-07-22Adding Shear transform to UV menu and Ctrl Alt Shift S hotkey (same as in 3D ↵Daniel Salazar
View)
2011-07-17cmake: cleanup include paths, some duplicates and going up some unneeded dirs.Campbell Barton
2011-07-10Fix #27926: autokey not working with auto IK, broke this with an earlier bugfix.Brecht Van Lommel
2011-07-08Fix #27902: autokey bones with individual origins transform not working.Brecht Van Lommel
2011-07-05Fix #27846: time extend / E key not work in sequence editor.Brecht Van Lommel
2011-07-04Fix #27849: 3D manipulator widget lost on mesh in edge mode.Brecht Van Lommel
The manipulator was always using vertex selection flags, but those are only valid in vertex mode, as selection flag flushing only happens in the direction vertex -> edge -> face. Now use edge/face selection flags when needed.
2011-07-03As per discussion: allow bone transforms again for proxy'ed bones.Ton Roosendaal
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-06-21Snapping/ProjectMartin Poirier
Disable editmesh as target if proportional edit is on (that was messed up incorrectly in revision 33233)
2011-06-17fix [#25598] projection surface snap issueCampbell Barton
Excuse the thrashing, this is from r35438, reverted r35444 under the _wrong_ impression Martin considered unacceptable.
2011-06-16fix [#27671] Transforming sequencer effects strips crashesCampbell Barton
2011-06-15Code cleanup: remove unused shaded draw mode code.Brecht Van Lommel
2011-06-14fix [#25423] Mirror clipping is ignored with single vertex extrusion when ↵Campbell Barton
using Face Snapping.
2011-06-07fix for vertex group copy to selectedCampbell Barton
- was using un-initialized stack memory if the source / target object had no vertex group. - if the target object had no vertex groups it would fails silently (not a bug but not very good functionality) - added an error message if any copying fails.
2011-06-07fix for sequencer transform with effects strips where the effects could be ↵Campbell Barton
moved to invalid times to avoid overlap but would immediately refresh back to overlapping locations after.
2011-06-07fix for edge slide snapping values being incorrect (reported by Nether Hound).Campbell Barton
Also dont call the value a 'Percent' and clamp the range displayed in the header. snap range being
2011-05-31cmake maintenanceCampbell Barton
blender_add_lib now takes a separate include argument to suppress warnings in system includes (mostly ffmpeg & python). also only build wm_apple.c on apple+carbon configuration.
2011-05-23fix own mistake [#27451] Flip to Top / Flip to Bottom menuitems on right ↵Campbell Barton
click on header not working also get rig of more shadowed vars (-Wshadow).
2011-05-21view3d function naming, no functional changes.Campbell Barton
2011-05-20change transform to round at 0.5 for fcurves.Campbell Barton
this gave noticeable issue when transforming int/fcurve's below zero.
2011-05-20use consistant arguments to ED_view3d_win_* funcs, a single float vector ↵Campbell Barton
rather then 2 floats.
2011-05-20function rename to give clearer meaning that they change from window to 3d ↵Campbell Barton
coordinates. some functions had vague names, I even ended up re-writing some of these functions by accident! also added doxy comments. * ED_view3d_win_to_3d (was window_to_3d) * ED_view3d_win_to_delta (was window_to_3d_delta) * ED_view3d_win_to_vector (was window_to_3d_vector / viewvector) * ED_view3d_win_to_segment_clip (was viewline) * ED_view3d_win_to_ray (was viewray)
2011-05-20use event->mval rather then subtracting ar->winrct.x / y from event->x / yCampbell Barton
2011-05-18fix remaining crash from [#27035] 3 problems: crash and enum "REGION" not ↵Campbell Barton
found in ('VERTS')
2011-05-18use ED_operator_screenactive rather then ED_operator_screenactive so ↵Campbell Barton
transform works in background mode.
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-05-08comment some unused code.Campbell Barton
2011-05-05alternative to joe's commit r36451.Campbell Barton
loopcut now follows 'Release confirms' user preference.
2011-05-03=trunk=Joseph Eagar
Recommitted eltopo collision code (but disabled by default) with Genscher's permission. To use, you need to install liblapack and libblas
2011-05-02fix transform code using a node space as an image space, accessing ↵Campbell Barton
unallocated memory. also remove bullet patch which has now been applied.
2011-05-01Style CleanupCampbell Barton
- duplicate cases in if/else - calc inside sizeof(...) - redundant NULL checks. - assignment to self. - fix error getting text prefix for screen ID button.