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
path: root/extern
AgeCommit message (Collapse)Author
2020-07-09weights workover0219
2020-07-09added goal positionsover0219
2020-07-09using CG solver as default for nowsoftbody-stable-v1over0219
2020-07-02fixed mcgsover0219
2020-07-01improved lattice genover0219
2020-07-01working on mcgsover0219
2020-06-30gauss seidel solverover0219
2020-06-26ope forgot some filesover0219
2020-06-24init guess on xover0219
2020-06-24several bugfixes but I think I'm going to need to change the way I handle ↵over0219
constrained solve
2020-06-23obstacle collisions. REALLY need to improve mass computationover0219
2020-06-23working on nearest-face traversalover0219
2020-06-23working on collisionover0219
2020-06-23 more interface changesover0219
2020-06-23changed up interface for lattice a bitover0219
2020-06-22fixed issue with rand causing mem errorover0219
2020-06-17added some assertsover0219
2020-06-16lattice gen better but some bug on monkey, sometimes. probably a ptr error ↵over0219
somewhere
2020-06-16added BVHover0219
2020-06-16debugging uniform latticeover0219
2020-06-10cache working but lots of copiesover0219
2020-06-10threadingover0219
2020-06-10stiffness settingsover0219
2020-06-10working on interfaceover0219
2020-06-08added tetgenover0219
2020-06-03still pretty buggy. The solver should be working, but lattice is too lousy ↵over0219
to see. The interface between blender and solver needs work too, doesn't seem to reset as often as I think it should be?
2020-06-03first commit. interfaced to very basic admmpd solver, but requires restart ↵over0219
to begin sim as caching not working for velocity. lattice is simply a packed 5-tet cube around mesh.
2020-05-20Merge branch 'blender-v2.83-release'Sebastián Barschkis
2020-05-20Fluid: Fix for non-moving liquid particlesSebastián Barschkis
Issue was introduced in 7bb3d9787ead with new Mantaflow files from 61280e5af3da.
2020-05-19Merge branch 'blender-v2.83-release'Sebastián Barschkis
2020-05-19Fluid: Updated Mantaflow source filesSebastián Barschkis
Includes changes for particle skipping during advection.
2020-05-09Fix building on NetBSDCampbell Barton
2020-05-08Fluid: Updated Mantaflow source filesSebastián Barschkis
Includes more flexible options for dt, dx in secondary particles plugin.
2020-05-03Audaspace: update from upstreamJörg Müller
- Changing API for time values from float to double for better precision. - Fixing minor mistakes in the documentation. - Fixing minor unnecessary large memory allocation.
2020-05-01Cleanup: rename WITH_X11 to WITH_GHOST_X11Campbell Barton
Matches WITH_GHOST_{SDL|WAYLAND}
2020-04-30Updated Mantaflow source filesSebastián Barschkis
2020-04-08Fix T73552: Mantaflow - liquid particles show up in organized unrealistic ↵Sebastián Barschkis
structure Issue was being caused by a particle offset which was random but the same for every particle.
2020-04-08Fluid: Update Mantaflow source filesSebastián Barschkis
Update includes new grid helper functions and some cleanups.
2020-04-08Fluid: Manta clang-format updateSebastián Barschkis
Do not use sort-includes in Manta source files for now when applying clang-format. Too many conflicts.
2020-03-31Audaspace: Update From Upstream (For API Docs)Aaron Carlisle
No functional changes: - Cleanup Spelling, Line Length - Use proper class method styling for py docs - Fix Broken Links Differential Revision: https://developer.blender.org/D7276 Fixes T75191
2020-03-17Fluid: Updated manta pp filesSebastián Barschkis
Includes only a rename. The name PyInit_Main was a bit confusing as it just belongs to Manta.
2020-03-16Fluid: Updated Manta pp filesSebastián Barschkis
Includes additional minmax check for Windows
2020-03-12Cleanup: use term suppress instead of repressCampbell Barton
Also check MSVC instead of WIN32, for setting MSVC flags.
2020-03-11Windows: Clean-up warnings originating from bulletRay Molenkamp
Bullet currently generates the majority of the warnings on windows all of them are silly. This patch disables all warns from bullet for now. We should revisit this if/when we update bullet to a newer version. Reviewed By: sergey brecht Differential Revision: https://developer.blender.org/D7118
2020-03-11Windows: Cleanup warning about non returning dtorRay Molenkamp
`google::LogMessageFatal::~LogMessageFatal` calls `abort` which MSVC correctly identifies as 'not returning' and warns about a potential memory leak. Given this is intended behaviour and glog is not overly concerned with shutting down the process nicely, we can safely ignore this warning.
2020-03-07Fluid: Optimization for smoke simulation (multigrid)Sebastián Barschkis
The solver will now automatically detect static scenes (no moving obstacles) and use a slightly faster pressure solve in those cases.
2020-03-01Build: show draco library under extern folder in Visual StudioPhillip Thomas
And other code tweaks to make this library more consistent with others. Differential Revision: https://developer.blender.org/D6864
2020-02-28Fluid: Updated Manta pp filesSebastián Barschkis
Updates include: - std::move() cleanup in rcmatrix.h - Enabled parallelization for fluid guiding (fairly noticeable speed improvement). - More flexible flags setter function with control over boundary width.
2020-02-26Fix OpenVDB link error on Windows after recent changesBrecht Van Lommel
2020-02-26Cleanup: deduplicate OpenVDB library definitions/include/libs logicBrecht Van Lommel
This will more important when we start using OpenVDB in more modules.