hexad

Results 8 comments of hexad

Maybe i can do this using a scaling matrix? ``` t = cq.Matrix([ [x, 0, 0, 0], [0, y, 0, 0], [0, 0, z, 0], [0, 0, 0, 1] ])...

Thanks. I tried the code there, but CadQuery has trouble importing the libraries. I get `ModuleNotFoundError: No module name 'OCC'`. I am using the CQ-Editor, standalone application, so how come...

Thank you! How exactly do i select the axis and where do i change the scaling factor?

The xs is the scaling factor and its location on the identity matrix changes the scaling axis?

I tried this: ``` imported_STEP = cq.importers.importStep('./CQ/model.STEP') xs = 4 xform = gp_GTrsf() xform.SetVectorialPart(gp_Mat( xs, 0, 0, 0, 1, 0, 0, 0, 1, )) brep = BRepBuilderAPI_GTransform(imported_STEP.wrapped, xform, False) brep.Build()...

You were right, it was `wrapped`. Thank you very much! This worked. As far as i can tell, CQ can run all the functions of the OpenCascade library? Do you...

Hello my friend! Honored to speak with you! No, it wasn't me, i have never actually used discord, though i have no problem making a start there! Which channel should...

Thank you very much for this repo and for the support! However, i am a bit lost with the repo structure. As far as i understand the `Basic` folder contains...