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-12-03Code Cleanup: minor changes fly-mode edits, use copy_v3_fl3, remove commentsCampbell Barton
2013-11-28View3D: split camera controlling parts of fly mode into their own functionsCampbell Barton
2013-11-19Code Cleanup: style, spelling and pep8 editsCampbell Barton
2013-10-31remove return argument from wmOperatorType->cancel, was only ever returning ↵Campbell Barton
OPERATOR_CANCELLED.
2013-09-04tweaks to fly modeCampbell Barton
- rotating the view is faster. - arrow keys work (was only wasd-rf before) - when stationary wheel or +/- will set z direction (so mouse wheel always sets the fly axis back to z)
2013-07-21code cleanup: add break statements in switch ()'s, (even at the last case).Campbell Barton
2013-06-26correct typos in comments.Campbell Barton
2013-06-13fixes for using scaled camerasCampbell Barton
- ED_view3d_from_m4() got incorrect rotation from scaled cameras, was noticable with smoothview transitions. - when you lock the camera to the view, any view edits would reset the cameras scale to 1. - another problem with view locking if the camera was scaled and had a parent, the parent would be transformed incorrectly. - fly mode was chaning object scale a little over time, now restore after applying scale so it never changes.
2013-06-06fix [#35650] parented camera behaviorCampbell Barton
fly mode with parenting was broken for both locked/unlocked parent mode.
2013-05-29Make sure bool will always have the same size in C and C++Sergey Sharybin
There were an issues with data structures defined in headers and being used by both C and C++ on systems with stdbool unavailable. This happened because bool in this case will be defined as unsigned int, which is 4 bytes. But C++'s bool is only 1 byte and this lead to alignment issues. Now bool is always 1 byte, also made sure there's no situation like bool foo = BitField & BitFlag, which could give overflow issues. Use (BitField & BitFlag) != 0 instead. Fixes #35553: Compositor broken (Backdrop & Preview)
2013-05-26BLI_math rename functions:Campbell Barton
- mult_m4_m4m4 -> mul_m4_m4m4 - mult_m3_m3m4 -> mul_m3_m3m4 these temporary names were used to avoid problems when argument order was switched.
2013-05-03disable view3d dolly, move, pan -- when the view offset is locked, also ↵Campbell Barton
corrected fly modes offset lock check and added ED_view3d_offset_lock_check() to reuse between functions.
2013-04-12Fix #34961: camera fly mode would reset camera scale.Brecht Van Lommel
2013-03-21fix for incorrect use of 'bool', also fix 2 older bugs in fly mode.Campbell Barton
- panning didnt keyframe translation animation. - when checking to key translation: speed `float` was converted to an `int` then treated as a bool, now check (speed != 0).
2013-03-21code cleanup: use bool where values are true/false, for view3d and related ↵Campbell Barton
functions.
2013-03-13code cleanup: use const events for modal and invoke operators.Campbell Barton
2013-01-08Added trackpad (and magic mouse) support to control speed in Fly Mode in 3d.Ton Roosendaal
2013-01-08style cleanupCampbell Barton
2012-12-20style cleanupCampbell Barton
2012-11-25code cleanup: warnings, styleCampbell Barton
2012-10-28Another leftover debug print, sorry!Ton Roosendaal
2012-10-27Bugfix #32823 (probably) or from Thomas Dinges in irc:Ton Roosendaal
- Camera mode fly a bit - Apply view change - Middlemouse to go out of camera view Zoom then fails. Appears the flymode is resetting values that have to be set. The bugreporter claims same, but blames it on particles ;)
2012-10-23rename api functions...Campbell Barton
- minf, maxf, mini, maxi --> min_ff, max_ff, min_ii, max_ii
2012-10-22style cleanupCampbell Barton
2012-10-21style cleanup: commentsCampbell Barton
2012-10-10fix for crash when entering fly mode in a camera view that has no camera ↵Campbell Barton
(rare but possible situation).
2012-09-19code cleanup: marker transform was doing some redundant/misleading ↵Campbell Barton
assignments & checks, remove unused cruft. also remove some other redundant checks.
2012-08-26style cleanup: whitespaceCampbell Barton
2012-07-29code cleanup: replace MIN2/MAX2 with minf/maxfCampbell Barton
2012-07-27code cleanup: remove unneeded 'struct' qualifiers Campbell Barton
2012-07-21use fabsf when using floats.Campbell Barton
2012-07-09style cleanupCampbell Barton
2012-05-25style cleanupCampbell Barton
2012-05-21code cleanup: remove some old commentsCampbell Barton
2012-05-08style cleanup: view3dCampbell Barton
2012-05-05code cleanup: function naming, use BKE_*type* prefix.Campbell Barton
2012-04-17Fix #30977: error loading modal keymaps from keyconfiguration presets.Brecht Van Lommel
2012-04-02style cleanupCampbell Barton
2012-04-02patch [#30721] Fly Operator Stack CorruptionCampbell Barton
from Jason Wilkins (jwilkins) slight change to fix in patch.
2012-03-26style cleanup: mostly whitespace around operatorsCampbell Barton
2012-03-24code cleanup: use zero_v3Campbell Barton
2012-03-18spelling cleanupCampbell Barton
2012-03-11style cleanup: + some warning fixes, also remove unused metaelem extern.Campbell Barton
2012-03-10style cleanup: fly mode.Campbell Barton
2012-03-10change fly mode behavior to address issue raised in [#30508] - there being ↵Campbell Barton
no way to pause. now when reversing direction immediately - fly mode translation will pause until pressed again.
2012-03-09style cleanup: spelling.Campbell Barton
also remove large, duplicate comments from sunsky.h
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-02-25style cleanup, use { on newline after function definition.Campbell Barton
spelling 'impliment' -> 'implement'
2012-02-22code cleanyp - no functional changes.Campbell Barton