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
2014-04-30Code cleanup: remove unused includesCampbell Barton
Opted to keep includes if they are used indirectly (even if removing is possible).
2014-04-04Cloth: replace EdgeHash with EdgeSetCampbell Barton
2014-02-14Code cleanup: duplicate headersCampbell Barton
2013-09-04replace sqrt(dot()) with length functions.Campbell Barton
2013-08-24cloth was using edgehash not quite correctly:Campbell Barton
- was ordering vertex args unnecessarily. - was adding the same edges multiple times into the edgehash.
2013-05-08remove unused define CLAMPTEST, move INPR toCampbell Barton
collision_compute_barycentric(), only place its used.
2013-04-05code cleanup: include orderCampbell Barton
2013-03-08style cleanupCampbell Barton
2013-03-05code cleanup: also change BKE_blender.h BLENDER_VERSION_CHAR to 'a' so as ↵Campbell Barton
not to confuse things.
2013-01-23make bullet optional againCampbell Barton
2012-12-28style cleanupCampbell Barton
2012-12-12Fix for cloth/smoke: Collision and flow objects always had to be on the same ↵Daniel Genrich
layer. Reported and patch by MiikaH
2012-11-23ifdef'd gcc diagnostic pragma's to quiet msvc and others.Campbell Barton
2012-11-04code cleanup: quiet -Wdouble-promotion, disabled this warnings for a few ↵Campbell Barton
files since its done throughout the code in some places.
2012-10-27use min/max inline functions where MIN2/MAX2 were doing type conversion.Campbell Barton
2012-10-23rename api functions...Campbell Barton
- minf, maxf, mini, maxi --> min_ff, max_ff, min_ii, max_ii
2012-10-21style cleanup: trailing tabs & expand some non prefix tabs into spaces.Campbell Barton
2012-10-19Fix #32920: cloth physics with collision exploding in some cases, due toBrecht Van Lommel
uninitialized memory usage.
2012-09-20code cleanup: remove unused macros, commet some which may be useful later - ↵Campbell Barton
or good to keep for completeness. quieted some warnings and add flags -Wmissing-include-dirs and -Wno-div-by-zero to cmake/gcc
2012-07-22style cleanupCampbell Barton
2012-07-07style cleanup: use c style comments in C codeCampbell Barton
2012-07-07code cleanup: dont use function calls like dot_v3v3, pow and sqrt within ↵Campbell Barton
macros which results in calling the function multiple times needlessly. also added some comments.
2012-06-27style cleanupCampbell Barton
2012-06-24style cleanypCampbell Barton
2012-06-17style cleanup:Campbell Barton
also fix for building ghost test and fix double free in one of the tests
2012-06-06Cloth: Add support for "Self Collision Vertex Group".Daniel Genrich
Self collision vertex groups enable artists to exclude selected vertices from getting involved in self collisions. This speeds simulations and it also resolves some self collision issues.
2012-06-03Compile fix - "spf" was undefinedJoshua Leung
2012-06-03Cloth collisions: Revert 47335.Daniel Genrich
2012-06-01Commenting out unused var, prevents my debug Blender to build... ;)Bastien Montagne
2012-06-01Followup fix Bugfix [#31629]: Cloth simulation collisions used still too ↵Daniel Genrich
high repulsions.
2012-05-29Bugfix [#31629] Cloth simulation results are much different from older onesDaniel Genrich
This is only a partial bugfix, reducing the repulse to 1/3. Cloth collision will still behave different because it is now catching more collisions.
2012-05-23style cleanupCampbell Barton
2012-05-15style cleanup: raytree codeCampbell Barton
2012-05-15Cloth collisions:Daniel Genrich
Add repulse for near vertices. This code didn't make sense where it was before. Still leaving it also at the old place since it cannot hurt.
2012-05-15Tag unused argumentSergey Sharybin
2012-05-15Cloth:Daniel Genrich
- Triangulate Cloth Mesh for collisions - Speed up collisions - Remove EL Topo code - Prepare code to incooperate El Topo self collisions (TODO next commits) TODO: ---------- - Triangulation: Is custom data/uv preserved correctly? - Use MPoly not tessface?
2012-04-29style cleanup: function calls & whitespace.Campbell Barton
2012-04-29style cleanup: whitespace / commasCampbell Barton
2012-04-28style cleanup: changes to brace placement / newlines - for/while/if/switchCampbell Barton
2012-04-25style cleanup: no functional changesCampbell Barton
2012-04-21style cleanup: multi-line if statements.Campbell Barton
2012-03-24style cleanup: follow style guide for formatting of if/for/while loops, and ↵Campbell Barton
else if's
2012-03-24code cleanup: use zero_v3Campbell Barton
2012-03-20Make collision function more general so it can be used by other modifiers, ↵Daniel Genrich
too. [This is preparation work for animated smoke collision]
2012-03-11style cleanup, also remove unused externs.Campbell Barton
2012-03-09code cleanup: replace macros VECCOPY, VECADD, VECSUB, INPR - with BLI_math ↵Campbell Barton
funcs. added copy float/double funcs: copy_v3fl_v3db(), copy_v3db_v3fl(). 2d & 4d too.
2012-03-06style cleanup, brackets in else/if, some indentation.Campbell Barton
2012-03-01Spelling CleanupCampbell Barton
2012-02-27style cleanup (mostly whitespace)Campbell Barton
2011-11-15svn merge -r41751:41779 ^/trunk/blenderCampbell Barton