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

A python package that provides useful classes/methods for pythonocc

Results 11 pythonocc-utils issues
Sort by recently updated
recently updated
newest added

### Description: The current implementation of the `curvature` function in the `DiffGeomCurve` class from `OCC.Utils.edge_py` appears to provide inaccurate results when applied to B-spline curves. While the function successfully calculates...

i am trying to get coordinates of the shapes i have in the STEP file ex( vertex , center point). using the pythonocc-core library what i did was to: 1-...

I get a runtime error calling the is_line function in Utils' edge.py ``` b = BRepPrimAPI_MakeBox(10, 20, 30).Shape() t = Topo(b) ed = next(t.edges()) my_e = Edge(ed) print(my_e.is_line()) ``` >...

``` def smooth_pnts(pnts): smooth = [pnts[0]] for i in range(1, len(pnts)-1): prev = pnts[i-1] this = pnts[i] next_pnt = pnts[i+1] pt = (prev+this+next_pnt) / 3.0 smooth.append(pt) smooth.append(pnts[-1]) return smooth ```...

Hello everyone, and hope for your well-being. I faced a problem when I tried to use the point_in_solid function from OCCUtils. Actually, sometimes when I use this function with a...

please do not merge yet, leave it for now, I will comment again when examples are ready with api changes...

How to find out the actual measurement of the step/iges files? Please help

Hello, I have pythonocc-core installed in an anaconda environment and it is a pleasure to use (though with a very steep learning curve as I had never manipulated CAD files/drawing...

I'm trying to install this, and it appears no packaged version is available, either in anaconda or pypi. It'd be nice if there was a way to install without needing...

With occutils properly installed, the option "solve radius" in the drop down menu ("geom plate") returns: `AttributeError: 'RadiusConstrainedSurface' object has no attribute 'curr_radius'` And the option "build curve network" exits...