Search found 65 matches

by kemeniru
Thu Sep 27, 2012 12:35 pm
Forum: Developers corner
Topic: Hiding properties in data window
Replies: 2
Views: 913

Re: Hiding properties in data window

It doesn't work this way.
Sorry that was a typo with "addObject". Thanks once again. Looking forward to upgrading as soon as possible!
by kemeniru
Wed Sep 26, 2012 10:22 pm
Forum: Developers corner
Topic: Hiding properties in data window
Replies: 2
Views: 913

Hiding properties in data window

I am following the parametric method in FreeCAD python programming where a data and view object are created in FreeCAD document. I want to use python dictionary objects like the following in a data object: obj = doc.addObject("App::PropertyPythonObject", BComponents) obj.BComponents = {&qu...
by kemeniru
Tue Aug 28, 2012 12:32 pm
Forum: Developers corner
Topic: Problem opening FreeCAD Files
Replies: 5
Views: 1362

Re: Problem opening FreeCAD Files

Thanks. Will be upgrading my FreeCAD soon!
by kemeniru
Sat Aug 25, 2012 7:06 am
Forum: Developers corner
Topic: Problem opening FreeCAD Files
Replies: 5
Views: 1362

Re: Problem opening FreeCAD Files

Thanks much. I read through but am not sure how to structure my data and view objects to conform to the changes. I still basically do: docObj = doc.addObject("Part::FeaturePython", docName) data(docObj) view(docObj.ViewObject) Then in my data and view modules I have the standard directives...
by kemeniru
Sat Aug 25, 2012 5:58 am
Forum: Developers corner
Topic: Problem opening FreeCAD Files
Replies: 5
Views: 1362

Problem opening FreeCAD Files

This problem relates to a module I am developing following some guidelines in my research. I have referred to this before but feel I should give some more information. Although it is about building information modeling it is being done following experimental ideas that may or may not pan out in the ...
by kemeniru
Thu Jul 12, 2012 3:02 pm
Forum: Developers corner
Topic: Trying to implement drawing on Faces
Replies: 1
Views: 639

Re: Trying to implement drawing on Faces

Update. Turns out the WorkingPlane was not the problem. Finally got it to work.
by kemeniru
Wed Jul 11, 2012 2:33 pm
Forum: Developers corner
Topic: Trying to implement drawing on Faces
Replies: 1
Views: 639

Trying to implement drawing on Faces

Hi Yorik: I want to be able to implement drawing lines and arcs on faces. I have been following Draft:Line and it seems to use the WorkingPlane object when it calls getSupport() before calling getPoint(). I kinda understand a little about what WorkingPlane is doing but I do not understand how it is ...
by kemeniru
Thu May 17, 2012 2:34 pm
Forum: Developers corner
Topic: BIM Module addition ideas
Replies: 84
Views: 34132

Re: BIM Module addition ideas

This is an ongoing topic as Yorik has mentioned. So even though this is an old post, I figure the comments are directed at my post so I will provide a response regardless. Have you seen Alberto Paoluzzi's work and his book, "Geometric Programming for Computer-Aided Design"? No I have not r...
by kemeniru
Wed May 02, 2012 3:13 pm
Forum: Developers corner
Topic: TaskPanel question
Replies: 0
Views: 922

TaskPanel question

I have a TaskPanel that sets focus to a QLineEdit when it is open. How can I set focus back to FreeCADGui when it closes? I use the esc key to cancel current commands in my module but this does not work once and after the task panel opens. UDPATE Actually it is not the opening of the TaskPanel that ...
by kemeniru
Fri Apr 27, 2012 10:06 pm
Forum: Developers corner
Topic: Snap tools user interface
Replies: 30
Views: 6049

Re: Snap tools user interface

Thanks Yorik: Just compiled revision 0900. By importing DraftSnap, the example works as expected. Also using Draft module is now working as well. Going to git and being able to compile in a different directory makes developing and working with the latest version of FreeCAD a breeze and very encourag...