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-09-20Minor: Other UI strings typos and tweaks.Bastien Montagne
2011-09-19/blender/editors: Removed final points in UI strings and messages.Bastien Montagne
Plus a few cuts in very long lines…
2011-09-07Apply patch [#28415] 3d mouse orbit mode individual axes enhancementNathan Letwory
Submitted by Rainer Wahler This patch enables individual axis inversion in trackball mode.
2011-08-31typo fix: end of lines ;; --> ;Campbell Barton
2011-08-27fix [#28373] "Lock camera to view" doew not work with 3D-mouse Campbell Barton
2011-08-25picky style edits with screen/view/drawing, also remove own bad example doc.Campbell Barton
2011-08-19warning cleanup for -Wdouble-promotionCampbell Barton
2011-08-07fixed crash when NDOF operators were called without an NDOF_MOTION eventMike Erwin
2011-08-02no functional changes.Campbell Barton
style edits, also renamed ndof_to_angle_axis --> ndof_to_axis_angle
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-02NDOF related editsCampbell Barton
- fix for building without NDOF on X11 - quiet some warnings
2011-07-27svn merge -r38558:38752 ↵Nathan Letwory
https://svn.blender.org/svnroot/bf-blender/trunk/blender .
2011-07-27shift-motion to pan with 3D mouseMike Erwin
2011-07-26onscreen ndof rotation guide (center + axis)Mike Erwin
2011-07-26experimental onscreen rotation guideMike Erwin
2011-07-25invert axes option affects trackball navigationMike Erwin
2011-07-25added option to invert axes for orbiting (part 1 of 2)Mike Erwin
2011-07-15removed unused ndof codeMike Erwin
2011-07-15more consistent and modal-friendly ndof events, fly mode v1Mike Erwin
2011-07-14disable old ndof fly (new stuff en route from another machine)Mike Erwin
2011-07-06various fixes to enable MSVC build, removed crusty old Win32 ndof codeMike Erwin
2011-07-06refitted old ndof fly code for 2.5, removed crusty old codeMike Erwin
2011-07-01verbose ndof event trace for a testerMike Erwin
2011-06-28enabled pan/zoom in rotation-locked 3D views + small cleanupMike Erwin
2011-06-28Mac ndof using blender view coordinates + small but important typo fixedMike Erwin
2011-06-28now using blender view coordinates for ndof input -- core and Linux in placeMike Erwin
2011-06-25NDOF zoom for orbit modes (trackball/turntable) in 3D viewMike Erwin
2011-06-21ndof trackball works... somehowMike Erwin
2011-06-20Compile fix. Note that var introduction must happen at start of code block.Nathan Letwory
2011-06-20small fix to turntable mode, first attempt at trackball code, ndof now ↵Mike Erwin
respects view locking and updates 'User Persp' etc.
2011-06-11SpaceNav works on LinuxMike Erwin
2011-06-09migrated NDOF code from soc-2010-merwin, SpaceNavigator now works on Mac blenderMike Erwin
2011-06-06Added cancel callbacks to modal operators which allocates memorySergey Sharybin
in invoke callback. This prevents unfreed memory blocks when quiting Bledner with modal operator running.
2011-05-28fixed "rather then" -> "rather than" typos all over the placeM.G. Kishalmi
2011-05-23fix [#27462] Linked Object (camera) can be moved by Lock Camera to ViewCampbell Barton
2011-05-23own recent commit broke zoom to mouselocCampbell Barton
2011-05-23fix [#27459] Flymode moves parentCampbell Barton
for durian we had camera rigs which needed to have the parent transformed rather then the camera, for this reason I made fly mode fly the parent rather then the camera its self. Make this a preference and use this for view camera/view locking too.
2011-05-23fix view3d_persp_mat4, which gave incorrect translation, rename to ↵Campbell Barton
ED_view3d_to_m4. added doxygen docs.
2011-05-22- view dolly now quits on pressing escape (if activated from the search menu).Campbell Barton
- adding new bones now makes them active.
2011-05-21view3d function naming, no functional changes.Campbell Barton
2011-05-20error in recent commit.Campbell Barton
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-20replace checks with rv3d->persp with rv3d->is_persp since in these cases it ↵Campbell Barton
only matters if its a perspective view matrix, this wouldn't work right for camera views.
2011-05-20simplify window_to_3d_vector() and call it from viewline()Campbell Barton
also update python view function to match.
2011-05-20use event->mval rather then subtracting ar->winrct.x / y from event->x / yCampbell Barton
2011-05-20make api functions for converting rv3d->camzoom, so the odd logic for this ↵Campbell Barton
isn't inlined all over.
2011-05-19- mousewheel zoom now zooms camera area when the camera is locked and in ↵Campbell Barton
ortho view. - remove secret apricot feature now dolly is its own operator.
2011-05-19change window_to_3d to take screen coords as floats.Campbell Barton
2011-05-18there wasn't a good way to know if a RegionView3D was perspective or not ↵Campbell Barton
(without having the View3D too and checking its camera values), added struct member 'is_persp', set with the view matrix.