Search found 87 matches

by petit_chat_noir
Fri Jun 04, 2021 7:07 pm
Forum: Python scripting and macros
Topic: draft, trackers
Replies: 1
Views: 842

draft, trackers

Hello all, I Know that python draft workbench have been deeply changed so I'm searching my children ^^ I was using :Draft.draftguitools.gui_trackers.lineTracker () But I think you've changed all places ! so what I have to import in my python code, and what's the function name for now ? thanks a lot ...
by petit_chat_noir
Thu May 28, 2020 2:06 pm
Forum: Install / Compile
Topic: Ubuntu 20.04 compile fail (PYSIDE2RCCBINARY-NOTFOUND)
Replies: 1
Views: 802

Ubuntu 20.04 compile fail (PYSIDE2RCCBINARY-NOTFOUND)

Hello,
I've seen that bug is reported, so is there a way to solve this problem at this time ?
compile pyside2-tools manually ?
thanks !
by petit_chat_noir
Tue Apr 21, 2020 8:18 pm
Forum: Python scripting and macros
Topic: treeview(viewObject) reduce group with python
Replies: 4
Views: 1217

Re: treeview(viewObject) reduce group with python

Mod Edit: Moved to python scripting subforum
[/quote]
@Kunda1 please send me a notification or PM when you move my post :D I'm lost
Kunda1 wrote: Tue Apr 21, 2020 4:12 pm
by petit_chat_noir
Tue Apr 21, 2020 8:11 pm
Forum: Draft, Arch & BIM
Topic: proposal right click menu
Replies: 1
Views: 639

proposal right click menu

Hello, what do you think about adding this feature in the right click menu ? : #isolate selected elements import FreeCAD,FreeCADGui obj= Gui.Selection.getSelection() for i in FreeCAD.ActiveDocument.Objects: if not hasattr(i,"Group"): if i not in obj: i.Visibility=False another function sho...
by petit_chat_noir
Tue Apr 21, 2020 7:24 pm
Forum: Draft, Arch & BIM
Topic: Help Needed on stretch/cut tool
Replies: 0
Views: 1004

Help Needed on stretch/cut tool

hello, I want to developp a tool to stretch/cut Shapes, like draft.stretch does for lines. I've already made a tool approaching of what I want : https://github.com/JeromeL63/Wood-Frame/ WFStretch.py ,this is what I need (with another CAD soft that I want to leave :) ): https://youtu.be/eguc6Ccpnwk I...
by petit_chat_noir
Tue Apr 21, 2020 12:35 pm
Forum: Python scripting and macros
Topic: treeview(viewObject) reduce group with python
Replies: 4
Views: 1217

treeview(viewObject) reduce group with python

Hello I've created a group with Python : FreeCAD.ActiveDocument.addObject("App::DocumentObjectGroupPython", self.name) I've added some objects in, and i would like to reduce/minimize my group in the treeview with a python function: Screenshot_20200421_143221.png Screenshot_20200421_143205....
by petit_chat_noir
Tue Apr 21, 2020 12:28 pm
Forum: Draft, Arch & BIM
Topic: Structural model, Architectural model, Bim
Replies: 25
Views: 4397

Re: Structural model, Architectural model, Bim

Yes, my previous projects only have 1 storey, so it wasn't necessary. With multi storey i think you're right
by petit_chat_noir
Tue Apr 21, 2020 5:58 am
Forum: UX/UI Design
Topic: [Suggestion] preferences window
Replies: 0
Views: 1003

[Suggestion] preferences window

Hello,
When you click on Edit->Preferences, the window is higher than screen height, so the OK Cancel Apply buttons are not shown. You have to maximize the windows to show buttons.
Could you please check screen height and so windows height < screen height.
Thanks !
by petit_chat_noir
Mon Apr 20, 2020 7:09 pm
Forum: Draft, Arch & BIM
Topic: Structural model, Architectural model, Bim
Replies: 25
Views: 4397

Re: Structural model, Architectural model, Bim

Yes. By default, imported IFC files recreate a project + site + building in FreeCAD. So if you end up creating your own too, you end up with two buildings in your model. You could safely delete the project + site + building imported from IFC, and only keep the objects... Maybe we could add an optio...
by petit_chat_noir
Mon Apr 20, 2020 5:17 pm
Forum: Draft, Arch & BIM
Topic: DRAFT Group update
Replies: 18
Views: 3230

Re: DRAFT Group update

Why App::DocumentObjectGroup doesn't create "name/ID" itself? It does. >>> obj = App.ActiveDocument.addObject("App::DocumentObjectGroup") >>> obj.Name 'App__DocumentObjectGroup' >>> obj.Label 'App__DocumentObjectGroup' But that's too long, so it's better to use a shorter, standa...