~ubuntu-branches/debian/squeeze/gmsh/squeeze

« back to all changes in this revision

Viewing changes to Geo/OCCIncludes.h

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme
  • Date: 2009-09-02 18:12:15 UTC
  • mfrom: (1.2.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090902181215-yla8zvcas2ucvkm9
[Christophe Prud'homme]
* New upstream release
  + fixed surface mesh orientation bug introduced in 2.4.0;
  + mesh and graphics code refactoring;
  + small usability enhancements and bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
#include "TopoDS_Compound.hxx"
105
105
#include "TopoDS_Iterator.hxx"
106
106
#include "BRepPrimAPI_MakeSphere.hxx"
 
107
#include "BRepPrimAPI_MakeBox.hxx"
 
108
#include "BRepPrimAPI_MakeCylinder.hxx"
 
109
#include "BRepPrimAPI_MakeCone.hxx"
 
110
#include "BRepPrimAPI_MakeTorus.hxx"
107
111
#include "TopTools_ListIteratorOfListOfShape.hxx"
108
112
#include "Precision.hxx"
109
113
#include "BRepAlgoAPI_Common.hxx"
110
114
#include "BRepAlgoAPI_Cut.hxx"
 
115
#include "BRepAlgoAPI_Section.hxx"
 
116
#include "BRepAlgoAPI_Fuse.hxx"
 
117
#include "BRepFilletAPI_MakeFillet.hxx"
111
118
#endif
112
119
 
113
 
// some Windows versions define min/max macros! 
114
120
#if defined(WIN32)
115
121
#undef min
116
122
#undef max
117
123
#endif
118
124
 
119
125
#endif
120