Search found 155 matches

by cblt2l
Sat Nov 05, 2016 2:17 am
Forum: Install / Compile
Topic: Linker error "cannot find -lqt5::widgets"
Replies: 12
Views: 8597

Re: Linker error "cannot find -lqt5::widgets"

micrenda wrote:Hello,
I created a patch and a bug report for this issue:
http://freecadweb.org/tracker/view.php?id=2740

I hope it will help Debian package maintainers.
This patch worked for me when building on Jessie. Thanks for posting.
by cblt2l
Thu Dec 04, 2014 5:32 am
Forum: Developers corner
Topic: Drawing dimensioning workbench for FreeCAD v0.15
Replies: 89
Views: 52616

Re: Drawing dimensioning workbench for FreeCAD v0.15

hamish, thanks a lot for creating this workbench. The lack of dimension capabilities has been a show-stopper for me using freecad for any kind of freelance work. Overall it seems to be working good for me on newer freecad build. I did make one modification. Sometimes I like/need to dimension to a qu...
by cblt2l
Wed Jun 25, 2014 4:47 pm
Forum: Open discussion
Topic: FreeCAD funding.
Replies: 15
Views: 7572

Re: FreeCAD funding.

But thats my opinion! I would like to hear different opinions! What about something similar to Crossover/Wine ? CrossOver is developed by CodeWeavers, based on Wine, an open-source Windows compatibility layer. CodeWeavers modifies the Wine source code, applies compatibility patches, adds configurat...
by cblt2l
Fri Jun 20, 2014 3:27 am
Forum: Python scripting and macros
Topic: CuraEngine Plugin
Replies: 111
Views: 59891

Re: CuraEngine Plugin

I don't even know for sure if cblt2l want's to use them, but most anything would be better than the 2 generic ones that are there now that look the same. Thanks for doing those guys, they look great! When I get a chance I will add them. :) Item 2 - Found a bug - I tried to use the support function ...
by cblt2l
Mon Jun 09, 2014 4:33 am
Forum: Python scripting and macros
Topic: CuraEngine Plugin
Replies: 111
Views: 59891

Re: CuraEngine Plugin

I made some fairly large changes today. Here's the rundown. First, the printbed & printvolume are no longer cantered on the origin. They now lie in quadrant one so all X and Y values are positive. The new parameters X-Offset and Y-Offset represent the distance from your origin to the edge of you...
by cblt2l
Wed May 28, 2014 2:59 am
Forum: Install / Compile
Topic: Debian source package for Calculix
Replies: 28
Views: 15691

Re: Debian source package for Calculix

MarcoP, Without seeing the complete log from dpkg-buildpackage I can't say for sure what the problem is, but I'm guessing it might be a dependency related issue. Make sure that you install the packages libspooles-dev libarpack2-dev gfortran from the 'universe' repository along with 'build-essential'...
by cblt2l
Tue May 27, 2014 6:17 pm
Forum: Developers corner
Topic: project structure and database
Replies: 5
Views: 3469

Re: project structure and database

Check here:
http://freecadweb.org/wiki/index.php?ti ... e_Creation

And:
https://github.com/FreeCAD/FreeCAD_sf_m ... platePyMod

Those helped me a lot in understanding how the workbench modules function.
by cblt2l
Wed May 21, 2014 2:42 am
Forum: Developers corner
Topic: Random FreeCAD Crashes With PySideUic
Replies: 3
Views: 2252

Re: Random FreeCAD Crashes With PySideUic

FWIW, I switched from code generation over to the UiLoader approach and crashes seem to be gone. Here's an example: import FreeCAD, FreeCADGui, os from PySide import QtCore, QtGui from FreeCADGui import PySideUic as uic # Test two different methods of loading Qt Designer forms # http://forum.freecad...
by cblt2l
Mon May 19, 2014 4:58 am
Forum: Developers corner
Topic: Random FreeCAD Crashes With PySideUic
Replies: 3
Views: 2252

Re: Random FreeCAD Crashes With PySideUic

From viewtopic.php?f=10&t=5890&start=60#p47114 Back to the crash of the gear panel. It appeared that I was right with my assumption that it's due to the duplicate symbols of Qt's QtUiTools module which is linked by FreeCAD and PySide. So, I have implemented an alternative way which does not ...
by cblt2l
Sun May 18, 2014 5:52 am
Forum: Developers corner
Topic: Random FreeCAD Crashes With PySideUic
Replies: 3
Views: 2252

Random FreeCAD Crashes With PySideUic

So I'm working on a 3D Printing Workbench and I am experiencing problems with freecad randomly crashing when loading the CuraEngine Slicer Tool . Its very intermittent. Sometimes you can run it 30 times in a row without crashing, sometimes only 2. I observed that over the course of adding more widge...