pythonocc-core icon indicating copy to clipboard operation
pythonocc-core copied to clipboard

Python package for 3D geometry CAD/BIM/CAM

Results 240 pythonocc-core issues
Sort by recently updated
recently updated
newest added

Hi, I have compiled both versions 0.18.2 and the latest 7.4.0 in Ubuntu, since I wanted to have them in a "normal" virtual environment. That worked fine, however I cannot...

Hi, I'm a relative beginner to Step and CAD in general. I know that the package supports AP242, and that AP242 supports colouring vertices. I can load a step file...

I have a CAD file. I exported it in STEP 214 and STP 242. When opening both files with: ``` from OCC.Core.STEPControl import STEPControl_Reader from OCC.Core.StlAPI import StlAPI_Writer input_file =...

This could be posted in the [documentation repo](https://github.com/tpaviot/pythonocc-documentation), but the [pyocc website]([www.pythonocc.org](http://www.pythonocc.org/)) also seems to be down. I'm having a bit of difficulty getting started and would just like to...

I have a .STP file where I marked an edge to be welded using Solidworks, and then I exported the file as step 242. The exported.STP file has this line:...

I am using the PyOCC 7.7.0 environment in PyCharm, and I would like to see the values of variables while debugging my code. Is it possible to do so? Using...

With the latest pythonocc-core version 7.7.0 and pyside2, init_display() is throwing a `Segmentation fault`. The error can be reproduced by running the following on Ubuntu 23.04: ``` conda create --name=pyoccenv...

Hi @tpaviot , I'm wondering how to display a 3D model with white surface and black edge lines using SimpleGui, and also how to adjust line width and show/hide hidden...

I used SimpleGui to visualize a shape. `display, start_display, add_menu, add_function_to_menu = init_display() ais_shp = AIS_ColoredShape(shape) for face in bottom_map.keys(): if bottom_map[face]: ais_shp.SetCustomColor(face, rgb_color(0,1,0)) display.Context.Display(ais_shp, True) display.FitAll() start_display()` Howerver, i...

This is my code: ``` python from PySide6.QtCore import * from PySide6.QtGui import * from PySide6.QtWidgets import * from OCC.Core.BRepPrimAPI import BRepPrimAPI_MakeBox from OCC.Display.OCCViewer import rgb_color from OCC.Display import OCCViewer...