N. Jourdane

Results 156 issues of N. Jourdane

I like the simplicity of [`Assembly.save()`](https://cadquery.readthedocs.io/en/latest/classreference.html#cadquery.Assembly.save): ```py asm = ( cq.Assembly() .add(box) .save('box.step') ) ``` To export a model, in the other hand, the syntax is not as nice: ```py...

[CadQuery Server](https://github.com/roipoussiere/cadquery-server) is a web server used to render 3d models from CadQuery code loaded dynamically. Example usage with Kate on the left and Firefox on the right: ![screenshot](https://user-images.githubusercontent.com/1665542/188649145-6f6a8bd2-1b89-45f4-9a28-b048926818a8.png) Features:...

announcement

I'm trying to handle stl export in cq-server. So far I tried this: ```py from jupyter_cadquery.ocp_utils import write_stl_file # ... assembly = to_assembly(*self.models, names=self.names) write_stl_file(assembly.compound(), 'output.stl') ``` It fails with...

bug

On linux the default sketchbook folder is ~/sketchbook So on the SConstruct file, replace this line : SKETCHBOOK_HOME = resolve_var('SKETCHBOOK_HOME', path.expanduser('~/share/arduino/sketchbook/')) by this line SKETCHBOOK_HOME = resolve_var('SKETCHBOOK_HOME', '~/sketchbook/')

I love custom emojis, it puts some creativity and fun in the fediverse. The drawback is that we depend in our instance admin to use them. I regularly see some...

suggestion

This will allow the user to heavily customize the UI. The main advantage in my opinion will be to be able to set large icons for toolbars used very often,...

Using *icon only* style, the extend button is overlapped on the icon: Example with small icons: ![image](https://user-images.githubusercontent.com/1665542/145874557-930b7ee1-4194-4e5b-ae84-334f021536dd.png) Example with large icons: ![image](https://user-images.githubusercontent.com/1665542/145874835-72bcd288-d62e-4627-8ce2-22cccaf52cf1.png)

When selecting *big icons* option, the icons are always on one row, whatever the number of rows I defined in options. The *number of rows* option could accept a number...

When we change the toolbar height, the icons size remains the same, as well as the number of rows, both defined in options. This action only change the space between...

Many add-ons can be configured vie the FreeCAD preferences dialog: ![image](https://user-images.githubusercontent.com/1665542/145859873-34f13eda-54ca-4f3a-b797-359d4eb0bf80.png) ModernUI could do the same, in order to avoid confusing the users, instead clicking on ModernUI workbench then Modern...