Search found 2902 matches

by Syres
Wed Oct 20, 2021 2:56 pm
Forum: Install / Compile
Topic: [SOLVED] FC compilation fails with OCCT 7.6.0 beta.
Replies: 44
Views: 18973

Re: [SOLVED] FC compilation fails with OCCT 7.6.0 beta.

ping ping Could either/both please test a bug I might have found that doesn't appear in OCC7.3 but does in OCC7.6beta. Steps are: Open the attached file and change to the Surface Wb Click the Filling... icon Click on Line001.Edge1 and get a hard crash Restart FreeCAD and repeats steps but click on ...
by Syres
Wed Oct 20, 2021 2:37 pm
Forum: Part Design module development
Topic: Collapse all parts in part desing tree view at once
Replies: 8
Views: 6304

Re: Collapse all parts in part desing tree view at once

nor500 wrote: Wed Oct 20, 2021 1:20 pm Thank you. But it would be a nice feature to have one click expand all and close all function.
Something like https://wiki.freecadweb.org/Macro_ExpandTreeItem ??
by Syres
Tue Oct 19, 2021 3:20 pm
Forum: Help on using FreeCAD
Topic: Sketcher: Angle constraint name not shown
Replies: 18
Views: 4183

Re: Sketcher: Angle constraint name not shown

What commit is this in? Doesn't appear to be in 26160...for any constraint. PR hasn't been merged yet so @jnxd must have either manually tweaked the source locally or pulled the PR branch, it's only two lines to change for you to change it manually and recompile. On Windows 7 for the dimensional co...
by Syres
Tue Oct 19, 2021 9:23 am
Forum: Install / Compile
Topic: New user - can't install macro via Addon Manager.
Replies: 10
Views: 6097

Re: New user - can't install macro via Addon Manager.

ping Is the following error related to the Certificate Verification error in this post https://forum.freecadweb.org/viewtopic.php?f=10&p=540976#p540976 ? 08:33:51 Appears to be an issue connecting to the Wiki, therefore cannot retrieve Wiki macro list at this time In both instances they are poi...
by Syres
Tue Oct 19, 2021 8:31 am
Forum: Developers corner
Topic: Extension Manager (ExtMan)
Replies: 77
Views: 17177

Re: Extension Manager (ExtMan)

Possibly something to do with: 09:25:45 [ExtMan] https://wiki.freecadweb.org/api.php?action=query&prop=revisions&titles=Macros_recipes&rvslots=%2A&rvprop=content&formatversion=2&format=json [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: certificate has expired (_...
by Syres
Tue Oct 19, 2021 7:14 am
Forum: Help on using FreeCAD
Topic: Help with front of car chassis
Replies: 6
Views: 1357

Re: Help with front of car chassis

I am a total noob to freecad. i am working on a project to design my own car. i am leaning how to use cad on a lotus 7 chassis to figure how to use free cad. I am running into a problem at the front of the car. the to tube is set back 3 inchs from the bottom tube. I having trouble with the side tub...
by Syres
Mon Oct 18, 2021 2:59 pm
Forum: Python scripting and macros
Topic: Determine object visibility.
Replies: 21
Views: 5314

Re: Determine object visibility.

You need to study the following with particular attention to Is Parent : # -*- coding: utf-8 -*- # Togglevis is a macro created for FreeCAD .19 and is intended to toggle the visibility of selected/non selected objects to make it easer to edit when you have many objects in scene # # HOW TO USE: selec...
by Syres
Mon Oct 18, 2021 2:07 pm
Forum: Python scripting and macros
Topic: Is object instance of Body. 'PartDesign' is not defined.
Replies: 2
Views: 1089

Re: Is object instance of Body. 'PartDesign' is not defined.

Something like: # -*- coding: utf-8 -*- import FreeCAD import FreeCADGui try: s = FreeCADGui.Selection.getSelection()[0] except: print('Nothing selected') for selection in FreeCADGui.Selection.getSelectionEx(): if str(type(selection.Object)) == "<class 'PartDesign.Body'>": print(selection....
by Syres
Mon Oct 18, 2021 11:22 am
Forum: Install / Compile
Topic: Ticket #6274 - Source code installation failed
Replies: 12
Views: 4065

Re: Source code installation failed

This old post still looks relevant today with regard to paths, see https://forum.freecadweb.org/viewtopic. ... 239#p59239
by Syres
Mon Oct 18, 2021 11:11 am
Forum: Open discussion
Topic: [DISCUSSION] Constraint's Widget - Open topics
Replies: 32
Views: 7879

Re: [DISCUSSION] Constraint's Widget - Open topics

It looks to me that git commit 224ffe3 could be the offending article but it won't compile cleanly on my box so I can't say for absolute certainty, but it's definitely part of https://github.com/FreeCAD/FreeCAD/pull/5091