pythonocc-core
pythonocc-core copied to clipboard
Python package for 3D geometry CAD/BIM/CAM
Hi all, After installing pythonocc 7.7.2 according to the build instructions and adjusting my code to some changed method names, the code I am using functions correctly, except for some...
Hi all, After following the install guide to build OCC from the source files, OCC seemed to have been installed correctly and I tried to run run_tests.py. This resulted in...
Hi, for my Machine Learning course project, I am using OCC to write step files using `STEPControl_Writer()` class, and I am able to visualize it in occ GUI but I...
I am working on removal of fillets from a solid imported as STEP file. I could determine the surfaces connected to the fillet surface and now need to extend them...
I want to automatically fillet the new edges produced by fusing 2 shapes. Something like this: https://upload.wikimedia.org/wikipedia/commons/f/fd/Fillet.jpg BRepFilletAPI_MakeFillet wants the edges returned `TopTools_ListOfShape BRepAlgoAPI_Fuse::SectionEdges()` to be added one by one....
I am working on a project about 6D object pose estimation, in which I need to generate a couple of CAD model templates from different perspectives, e.g. taking samples by...
Under pythonocc-core 7.7.0, executing `Curve()` on a `BRepAdaptor_Curve` causes a core dump: ```python from OCC.Core.BRepAdaptor import BRepAdaptor_Curve from OCC.Core.BRepBuilderAPI import BRepBuilderAPI_MakeEdge from OCC.Core.gp import gp_Pnt def test(): p1 = gp_Pnt(5,...
OCC DE Wrapper was released with 7_7_0 OCCT. You can check updated documentation for ver7_7_1. All projects that exist to work with CAD files using OCCT, including commercial ones, support...
Hello y'all! I have the following problem: I'm currently trying to visulize a 3D Model in a Jupyter Notebook. In order to do so I load a Step file and...
Hi, I have been trying to construct some Breps in OCC using PythonOCC. I have managed to successfully create Breps composed of BSplineSurfaces and most types of edges/curves (lines, BSplineCurves,...