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
2006-06-10removed extra qualifier on class memeber bool BOP_Mesh::isClosedMesh();Stephen Swaney
2006-06-10===Tools===Ken Hughes
Another boolean bugfix: don't add faces which contain only two vertices (actually, triangles with two identical vertices).
2006-06-10===Tools===Ken Hughes
Adding back some code to booleans that got lost in the Orange merge. I've also added back the code which checked that meshes were solid ("manifolds") but have the actual check in intern/boolop/intern/BOP_Interface.cpp, since from my testing it was not causing crashes or hangs. It *can* give odd results depending on what you're trying to intersect, but seems useful. Additionally, since existing bugs in the current code can create non-solid/non-manifold meshes, seems hypocritical to create a mesh that can't later be used in another boolean operation.
2006-06-06===Tools===Ken Hughes
Bug "fix" for #3932, and possibly for #3799. Booleans can get into an endless loop (at least until memory runs out); through triangulation somehow a face is repeatedly added to the list of faces to triangulate. This patch checks the face list for duplicates prior to a list add and aborts if a dup is found. The real issue is why the triangulation is creating the face in the first place, but that will take a more thorough (and longer) examination of the code. If I can fix that issue that prior to the 2.42 release, then this code can be removed.
2006-03-29Added BOP_Mesh constructor to get rid of this:Kent Mein
BOP_Mesh.h:45: warning: ‘class BOP_Mesh’ only defines private constructors and h as no friends drawimasel.c initalized a variable so it didn't give warnings about it. (wasn't really needed but if the code changes could be potential issue) Kent
2006-02-04== SCons ==Nathan Letwory
* This commit is all of the rewrite work done on the SCons system. For documentation see doc/blender-scons.txt and doc/blender-scons-dev.txt. Also http://mediawiki.blender.org/index.php/BlenderDev/SconsRefactoring contains valuable information, along with what still needs to be done. - linux, os x and windows compile now. - files are compiled to BF_INSTALLDIR (see config/(platform)-config.py) - NOTE: Jean-Luc P will commit sometime during the weekend proper appit() for OS X. For now, copy the resulting binary to an existing .app bundle. - features: - cleaner structure for better maintenance - cleaner output during compile - better handling of build options - general overall speed increase - see the wiki for more info Cygwin, FreeBSD and Solaris systems still need work. For these systems: 1) copy a config/(platform)-config.py to ie. config/cygwin-config.py 2) set the proper defaults for your platform 3) mail me at jesterking at letwory dot net with you configuration. if you need any modifications to the system, do send a patch, too. I'll be giving first-aid today and tomorrow, after that it'll be all regular development work :) /Nathan
2006-01-30More simple fixes to cleanup warnings and what not:Kent Mein
extern/bullet/BulletDynamics/ConstraintSolver/SimpleConstraintSolver.h added newline at end of file. intern/boolop/intern/BOP_Face2Face.cpp fixed indentation and had nested declarations of a varible i used for multiple for loops, changed it to just one declaration. source/blender/blenkernel/bad_level_call_stubs/stubs.c added prototypes and a couple other fixes. source/blender/include/BDR_drawobject.h source/blender/include/BSE_node.h source/blender/include/butspace.h source/blender/render/extern/include/RE_shader_ext.h added struct definitions source/blender/src/editmesh_mods.c source/gameengine/Ketsji/KX_BlenderMaterial.cpp source/gameengine/Ketsji/KX_ConvertPhysicsObjects.cpp source/gameengine/Ketsji/KX_RaySensor.cpp removed unused variables; source/gameengine/GameLogic/Joystick/SCA_Joystick.cpp changed format of case statements to avoid warnings in gcc. Kent
2005-11-17some more msvc6 magicJens Ole Wund
2005-11-12Bjornmose's fixes for making booleans compile on MSVC 6.Alexander Ewering
Thanks!
2005-11-11special service for msvc6 projectsJens Ole Wund
post build step for booleans --> copy boolop.lib to lib folder _foo_/lib/windows.. enabeling bullet for GE wants to link with _foo_/lib/windows/bullet/lib/bullet3.lib you have to build it with continuous.dsw in exten/bullet and copy it manually there since bullet is exten i think no automagic in place here
2005-11-09adding msvc6 project to boolopsJens Ole Wund
2005-11-03project file updateJoseph Gilbert
*Added the boolop project
2005-11-01-- avoid some divide-by-zero errors/assertions in boolean modifiers whichKen Hughes
caused "Trace/BPT trap" errors (don't normalize zero-length vectors)
2005-10-29fixing case issue for blender_BOP.lib to blender_bop.libJohnny Matthews
2005-10-29Scons files for BoolopJohnny Matthews
also a fix in BOP_Material so that MSVC won't complain about template issues
2005-10-29New files from new booleansAlexander Ewering