Search found 24 matches

by greyltc
Mon Mar 29, 2021 5:22 pm
Forum: Install / Compile
Topic: [FIXED] Compiling on Arch/Manjaro: CMake summary doesn't report Coin3D version
Replies: 9
Views: 2180

Re: Compiling on Arch/Manjaro: CMake summary doesn't report Coin3D version

@Kunda1 looks pretty good to me now! -- Checking for one of the modules 'hdf5-serial' -- Unable to determine HDF5 C flags from HDF5 wrapper. -- Unable to determine HDF5 C version_var from HDF5 wrapper. -- Found HDF5: hdf5::hdf5-shared;hdf5::hdf5-shared;/usr/lib/libhdf5.so (found version "1.12.0...
by greyltc
Mon Mar 29, 2021 5:18 pm
Forum: Open discussion
Topic: [FIXED] Ticket #4610: OCC's step export pathway generates bad geometry
Replies: 4
Views: 2917

Re: Ticket #4610: OCC's step export pathway generates bad geometry

Thank you for starting a thread for this. I don't exactly know whose code this is a bug in, but I suspect it's in opencascade's. I've filed a report there too: https://tracker.dev.opencascade.org/view.php?id=32264 I've seen a similar issue with other software (cadquery) that uses occt's step export ...
by greyltc
Sat Dec 05, 2020 4:37 pm
Forum: Install / Compile
Topic: [FIXED] Compiling on Arch/Manjaro: CMake summary doesn't report Coin3D version
Replies: 9
Views: 2180

Re: Compiling on Arch/Manjaro: CMake summary doesn't report Coin3D version

The summary printer has this code for coin: message(STATUS "Coin3D: [${COIN3D_LIBRARIES}] [${COIN3D_INCLUDE_DIRS}]") https://github.com/FreeCAD/FreeCAD/blob/71726a11d0844f263dad636fb98bb996a479e007/cMake/FreeCAD_Helpers/PrintFinalReport.cmake#L168 So the empty bracket is because COIN3D_INC...
by greyltc
Thu Oct 18, 2018 1:06 am
Forum: Developers corner
Topic: Some svg circles don't work
Replies: 0
Views: 565

Some svg circles don't work

I have some circle shaped edges that aren't getting SVG exported correctly unless I change line https://github.com/FreeCAD/FreeCAD/blob/master/src/Mod/Draft/Draft.py#L2225 from if round(edge.Curve.Axis.getAngle(drawing_plane_normal),2) == 0: to if round(edge.Curve.Axis.getAngle(drawing_plane_normal)...
by greyltc
Mon Oct 15, 2018 11:38 pm
Forum: Developers corner
Topic: OpenSCAD import broken for non gui
Replies: 1
Views: 512

OpenSCAD import broken for non gui

See this bug:
https://www.freecadweb.org/tracker/view.php?id=3640

This is the line that breaks it:
https://github.com/FreeCAD/FreeCAD/blob ... SG.py#L406
because .hide() can't be used when there is no gui.
by greyltc
Thu Oct 11, 2018 10:46 am
Forum: Install / Compile
Topic: link SVGCleanerId_0 hasn't been detected!
Replies: 2
Views: 749

Re: link SVGCleanerId_0 hasn't been detected!

Sorry, I use Arch and FreeCAD_0.18.14715.glibc2.17-x86_64.AppImage works fine for me
by greyltc
Mon Oct 08, 2018 1:48 pm
Forum: Developers corner
Topic: Porting to python3
Replies: 957
Views: 199003

Re: Porting to python3

The AppImage doesn't work for me. I'm using Arch Linux: $ ./FreeCAD_0.18.14929_Conda_Py3Qt5_glibc2.12-x86_64.AppImage /tmp/.mount_FreeCAP1fqgD FreeCAD 0.18, Libs: 0.18R14929 (Git) © Juergen Riegel, Werner Mayer, Yorik van Havre 2001-2018 ##### #### ### #### # # # # # # # ## #### #### # # # # # #### ...
by greyltc
Tue Mar 01, 2016 12:11 pm
Forum: Help on using FreeCAD
Topic: How do you draw dimensions on a 2D drawing ?
Replies: 5
Views: 9989

Re: How do you draw dimensions on a 2D drawing ?

NormandC wrote:At the moment you cannot add dimensions on a drawing page from the Drawing workbench.
Is this still true in March 2016?
by greyltc
Thu Feb 25, 2016 5:42 pm
Forum: Developers corner
Topic: multiCut?
Replies: 8
Views: 2018

Re: multiCut?

Below is what I've come up with for a multiCut function (in python). Thoughts? Note: The commented multiFuse() bit I have there at the start is not needed, but it will reduce the number of iterations the while loop needs to complete, in case some of the child objects touch/overlap. Edit: fixed a bug...
by greyltc
Thu Feb 25, 2016 2:02 pm
Forum: Developers corner
Topic: multiCut?
Replies: 8
Views: 2018

Re: multiCut?

This can get more complicated when one of the cut operations yields multiple disconnected objects. The multicut algorithm would then need to branch to handle the extra objects that are created in this case