Alex Brasington
Alex Brasington
I am interested in working in the u and v parameter space of a shell. However, this space is not continuous when multiple faces are present. Each face has its...
I am using an occ widget on a tab that is initially disabled. When i enable the tab and click on it, the widget appears, however it is not the...
``` 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 ```...
Is there a way to access the underlying bounding boxes created by the BVHModel? I've seen in the C++ version that you can call getBV(int id) to access individual boxes.