[Bf-blender-cvs] CVS commit: blender/intern/csg/extern CSG_Interface.h blender/intern/csg/intern CSG_BBox.h CSG_BBoxTree.cpp CSG_BBoxTree.h CSG_BlenderVProp.h CSG_BooleanOp.h CSG_BooleanOp.inl CSG_CVertex.h CSG_ConnectedMesh.h CSG_ConnectedMeshWrapper.inl CSG_GeometryBinder.h ...

Laurence laurencebourn at hotmail.com
Tue Feb 10 21:16:45 CET 2004


loczar (Laurence) 2004/02/10 21:16:44 CET

  Added files:
    blender/intern/csg/extern CSG_Interface.h 
    blender/intern/csg/intern CSG_BBox.h CSG_BBoxTree.cpp 
                              CSG_BBoxTree.h CSG_BlenderVProp.h 
                              CSG_BooleanOp.h CSG_BooleanOp.inl 
                              CSG_CVertex.h CSG_ConnectedMesh.h 
                              CSG_ConnectedMeshWrapper.inl 
                              CSG_GeometryBinder.h CSG_IndexDefs.h 
                              CSG_Math.h CSG_Math.inl CSG_Mesh.h 
                              CSG_MeshCopier.h CSG_MeshWrapper.h 
                              CSG_MeshWrapper.inl CSG_Polygon.h 
                              CSG_SplitFunction.h 
                              CSG_TreeQueries.h CSG_Triangulate.h 
                              CSG_Triangulate.inl CSG_Vertex.h 
                              MT_Line3.cpp MT_Line3.h 
    blender/intern/csg/intern/blender CSG_BlenderMesh.h 
                                      CSG_BlenderVProp.cpp 
                                      CSG_CsgOp.cpp CSG_CsgOp.h 
                                      CSG_IndexDefs.h 
                                      CSG_Interface.cpp 
                                      CSG_Iterator.h 
                                      CSG_MeshBuilder.h 
                                      CSG_PropArray.h 
                                      CSG_SimpleProp.cpp 
                                      CSG_SimpleProp.h 
    blender/intern/csg/make/msvc60 csg.dsp csg.dsw 
  
  Log:
  Ok here is the new CSG library that implements boolean operations for blender through the 'C' api in csg/extern/CSG_Interface.h.
  
  As mentioned earlier on bf-commiters mailing list, there is no current *nix make file only an msvc60 project file. I only have a linux box at work and to be honest I want to avoid doing any commits from there! So if some kind soul could sort it out that would be great.
  
  Dependencies:
  This code only depends on other stuff in the intern library, moto and memutils the CSG lib needs to have their include paths to compile. Other than that its completely self contained.
  
  Acknowledgements:
  To speed up the polygon-polygon intersection queries I've used some code (under the GPL) from freesolid2.0 this clearly marked in the appropriate files and Gino van den Bergen still owns the copyright to that material. The algorithm I used in based on one from Paul Nettle described on flipcode (www.flipcode.com) and I think his work was a derivative of the "Laidlaw algorithm"
  
  There is also some basic 'ear clipping' triangulation code that unfortunately remains unatributable. I have no right to publish this code under the GPL nor BPL for that matter as I have no idea who the original authors are. Its just one of those random bits of internet code.
  
  Warning!
  The stuff used a lot of C++ template features, which on one hand makes it very generic but on the other means that some work will need to be done to get working with other compilters. The msvc60 compiler is not very compliant to the C++ standards with respect to templates so its very difficult to say if this code will compile out of the box on other platforms.
  
  I still haven't committed modifications to booleanops.c in the blender code as without a working library to link to it will break the current build. This needs to be done first!
  
  Improvements
  This code is much simpler than the previous bsp implementation see intern/bsp and this old code should be deprectated/removed. However, whilst this implementation produces less triangles in the output than the bps algo, its still not an optimal solution. This is just hard to do and beyond my humble skills.
  
  License:
  Just to make it clear this stuff for the reasons mentioned above and for the fact I'm to mean to give the copyright away to BF is licensed under the GPL only.
  
  Cheers,
  Laurence.



More information about the Bf-blender-cvs mailing list