Search found 5065 matches

by paullee
Tue Mar 12, 2024 12:24 am
Forum: Users Showcase
Topic: Vila Matilde House, working with linked files
Replies: 54
Views: 29514

Re: Vila Matilde House, working with linked files

Looks great, thanks ! :D
by paullee
Mon Mar 11, 2024 12:27 am
Forum: Python scripting and macros
Topic: How to account for wall width when scripting wall creation
Replies: 4
Views: 498

Re: How to account for wall width when scripting wall creation

It is similar to a workflow with GUI : - After you create the Draft Wire - Select it - Click the Wall tool in Arch / BIM workbench - It would create the wall as you created via python You can find different attribute by selecting the wall object, e.g. the Align and you can change it after its creati...
by paullee
Tue Mar 05, 2024 10:30 pm
Forum: Draft, Arch & BIM
Topic: [Fixed] Sketch based Arch_Roof and wall substraction
Replies: 39
Views: 5474

Re: [Fixed] Sketch based Arch_Roof and wall substraction

Seems FreeCAD_dev now works on Fedora on Wayland, also can show pointer on screen capture :)

Tried to make a short video to compare the old and new behaviour -

phpBB [video]
by paullee
Tue Mar 05, 2024 10:27 pm
Forum: Draft, Arch & BIM
Topic: how can I draw a non vertical wall?
Replies: 5
Views: 567

Re: how can I draw a non vertical wall?

There are a number of resources, try google and find them, e.g. https://wiki.freecad.org/Arch_tutorial https://wiki.freecad.org/Manual:BIM_modeling https://www.youtube.com/watch?v=Jc12_G5DFF0 https://wiki.freecad.org/Part_Module https://wiki.freecad.org/PartDesign_Workbench https://wiki.freecad.org/...
by paullee
Tue Mar 05, 2024 12:32 pm
Forum: Draft, Arch & BIM
Topic: Pipes on a TechDraw
Replies: 10
Views: 1051

Re: Pipes on a TechDraw

Thanks Roy_043
by paullee
Mon Mar 04, 2024 2:57 pm
Forum: Draft, Arch & BIM
Topic: how can I draw a non vertical wall?
Replies: 5
Views: 567

Re: how can I draw a non vertical wall?

Depend on what you mean by an non-vertical wall - Ron Champ? :D [ Architecture Masterpiece ] Ronchamp FC Model https://github.com/paullee0/FreeCAD_RonChamp For example, the 'Wall-S' is modelled with Part Loft of 2 Sketches. https://forum.freecad.org/download/file.php?style=5&id=174867 https://fo...
by paullee
Mon Mar 04, 2024 12:58 pm
Forum: Draft, Arch & BIM
Topic: Pipes on a TechDraw
Replies: 10
Views: 1051

Re: Pipes on a TechDraw

I see, thanks.
by paullee
Mon Mar 04, 2024 12:18 am
Forum: Draft, Arch & BIM
Topic: [Fixed] Sketch based Arch_Roof and wall substraction
Replies: 39
Views: 5474

Re: [Fixed] Sketch based Arch_Roof and wall substraction

Even with the odd curve shape as discussed above, it still works :)


Screenshot from 2024-03-04 08-13-53.png
Screenshot from 2024-03-04 08-13-53.png (139.24 KiB) Viewed 420 times
Screenshot from 2024-03-04 08-14-41.png
Screenshot from 2024-03-04 08-14-41.png (163.39 KiB) Viewed 420 times
Screenshot from 2024-03-04 08-14-03.png
Screenshot from 2024-03-04 08-14-03.png (158.76 KiB) Viewed 420 times
by paullee
Mon Mar 04, 2024 12:07 am
Forum: Draft, Arch & BIM
Topic: Pipes on a TechDraw
Replies: 10
Views: 1051

Re: Pipes on a TechDraw

The Section object has an "Only Solids" property. Change that to false. Okay, that's working. I can show the Draft Lines on the drawing. Interesting. I try turning that to False, the pipe solid still appears. I try turning the All On the ArchView to off, turn off the Pipe object, turn on ...
by paullee
Sun Mar 03, 2024 9:30 am
Forum: Draft, Arch & BIM
Topic: [Fixed] Sketch based Arch_Roof and wall substraction
Replies: 39
Views: 5474

Re: [Fixed] Sketch based Arch_Roof and wall substraction

Just simple test, minor modification to the getSubVolume() of ArchRoof as below. Now, no needs to manually create the SubVolume even your Roof is solids built by other WB (i.e. not from a Base closed wire), curve roof works :) def getSubVolume(self, obj): '''returns a volume to be subtracted''' ... ...