Skip to content
Snippets Groups Projects
Select Git revision
  • 178a07a384e6f5de092aa3295048df94dc444a71
  • master default
  • cgnsUnstructured
  • partitioning
  • poppler
  • HighOrderBLCurving
  • gmsh_3_0_4
  • gmsh_3_0_3
  • gmsh_3_0_2
  • gmsh_3_0_1
  • gmsh_3_0_0
  • gmsh_2_16_0
  • gmsh_2_15_0
  • gmsh_2_14_1
  • gmsh_2_14_0
  • gmsh_2_13_2
  • gmsh_2_13_1
  • gmsh_2_12_0
  • gmsh_2_11_0
  • gmsh_2_10_1
  • gmsh_2_10_0
  • gmsh_2_9_3
  • gmsh_2_9_2
  • gmsh_2_9_1
  • gmsh_2_9_0
  • gmsh_2_8_6
26 results

GModelIO_OCC.cpp

Blame
  • Forked from gmsh / gmsh
    Source project has a limited visibility.
    GModelIO_OCC.cpp 102.56 KiB
    // Gmsh - Copyright (C) 1997-2017 C. Geuzaine, J.-F. Remacle
    //
    // See the LICENSE.txt file for license information. Please report all
    // bugs and problems to the public mailing list <gmsh@onelab.info>.
    
    #include "GmshConfig.h"
    #include "GmshMessage.h"
    #include "GModelIO_OCC.h"
    #include "Context.h"
    #include "OCCVertex.h"
    #include "OCCEdge.h"
    #include "OCCFace.h"
    #include "OCCRegion.h"
    #include "MElement.h"
    #include "MLine.h"
    #include "OpenFile.h"
    #include "StringUtils.h"
    #include "ExtrudeParams.h"
    
    #if defined(HAVE_OCC)
    
    #include <BRepAlgoAPI_Common.hxx>
    #include <BRepAlgoAPI_Cut.hxx>
    #include <BRepAlgoAPI_Fuse.hxx>
    #include <BRepAlgoAPI_Section.hxx>
    #include <BRepBuilderAPI_Copy.hxx>
    #include <BRepBuilderAPI_MakeEdge.hxx>
    #include <BRepBuilderAPI_MakeFace.hxx>
    #include <BRepBuilderAPI_MakeShell.hxx>
    #include <BRepBuilderAPI_MakeSolid.hxx>
    #include <BRepBuilderAPI_MakeVertex.hxx>
    #include <BRepBuilderAPI_MakeWire.hxx>
    #include <BRepBuilderAPI_Sewing.hxx>
    #include <BRepBuilderAPI_Transform.hxx>
    #include <BRepBuilderAPI_GTransform.hxx>
    #include <BRepCheck_Analyzer.hxx>
    #include <BRepFilletAPI_MakeFillet.hxx>
    #include <BRepGProp.hxx>
    #include <BRepLib.hxx>
    #include <BRepOffsetAPI_MakeFilling.hxx>
    #include <BRepOffsetAPI_MakePipe.hxx>
    #include <BRepOffsetAPI_MakeThickSolid.hxx>
    #include <BRepOffsetAPI_Sewing.hxx>
    #include <BRepOffsetAPI_ThruSections.hxx>
    #include <BRepPrimAPI_MakeBox.hxx>
    #include <BRepPrimAPI_MakeCone.hxx>
    #include <BRepPrimAPI_MakeCylinder.hxx>
    #include <BRepPrimAPI_MakePrism.hxx>
    #include <BRepPrimAPI_MakeRevol.hxx>
    #include <BRepPrimAPI_MakeSphere.hxx>
    #include <BRepPrimAPI_MakeTorus.hxx>
    #include <BRepPrimAPI_MakeWedge.hxx>
    #include <BRepTools.hxx>
    #include <BRep_Tool.hxx>
    #include <ElCLib.hxx>
    #include <GProp_GProps.hxx>
    #include <GeomAPI_PointsToBSpline.hxx>
    #include <Geom_BSplineCurve.hxx>
    #include <Geom_BezierCurve.hxx>
    #include <Geom_Circle.hxx>
    #include <Geom_Ellipse.hxx>
    #include <Geom_TrimmedCurve.hxx>
    #include <IGESControl_Reader.hxx>
    #include <IGESControl_Writer.hxx>
    #include <STEPControl_Reader.hxx>
    #include <STEPControl_Writer.hxx>
    #include <ShapeBuild_ReShape.hxx>
    #include <ShapeFix_FixSmallFace.hxx>
    #include <ShapeFix_Shape.hxx>
    #include <ShapeFix_Wireframe.hxx>