I would like to create an arch in FreeCAD, which will be used in the architecture module. In OpenSCAD, it will look like this:

A source:
rotate(270, v=[1,0,0]) {difference() {rotate_extrude(fn=500) {translate([750, 0, 0])square([400,400]);}; translate([-2000, 0, 0]) {cube([4000, 1500, 1500]);}; }};
Using the OpenSCAD module is not a solution, because I would like to use the grid snap functions and be able to edit the arch without deleting and reconstructing it from the OpenSCAD source code (which, apparently, is necessary in FreeCAD).
Finding solutions using a search engine is not possible, because, apparently, they only refer to the architecture module (= Arch).
source share