Search found 5239 matches
- Tue Aug 09, 2022 4:18 pm
- Forum: Python scripting and macros
- Topic: New property, storing a sketch name, can that name change?
- Replies: 4
- Views: 226
- Tue Aug 09, 2022 11:39 am
- Forum: Python scripting and macros
- Topic: New property, storing a sketch name, can that name change?
- Replies: 4
- Views: 226
Re: New property, storing a sketch name, can that name change?
Have you tried using the App::PropertyLink type?
- Tue Aug 09, 2022 8:09 am
- Forum: Open discussion
- Topic: Showing Arch_Axis number on TechDraw page
- Replies: 6
- Views: 349
Re: Showing Arch_Axis number on TechDraw page
This is correct, but once created you can change the object to a group containing multiple objects.wandererfan wrote: ↑Tue Aug 09, 2022 12:39 am I didn't realize that it was limited to one object per view
- Tue Aug 09, 2022 8:05 am
- Forum: TechDraw
- Topic: Measure holes not 90° opposite each other
- Replies: 3
- Views: 200
Re: Measure holes not 90° opposite each other
For the bottom example the 'standard' tools TechDraw_HorizontalDimension and TechDraw_VerticalDimension can of course be used.
- Tue Aug 09, 2022 7:50 am
- Forum: Toponaming and Link Branch
- Topic: Automatic contour recognition tool in Sketch workbench ?
- Replies: 9
- Views: 435
Re: Automatic contour recognition tool in Sketch workbench ?
Having selected the closed loop, what would you then do with it?
- Mon Aug 08, 2022 7:31 pm
- Forum: Python scripting and macros
- Topic: CenterOfGravity of wire
- Replies: 1
- Views: 158
Re: CenterOfGravity of wire
No, you can verify this yourself with a circle.
- Mon Aug 08, 2022 7:20 pm
- Forum: Help on using FreeCAD
- Topic: collada export results in empty but correct file on referenced features
- Replies: 1
- Views: 189
Re: collada export results in empty but correct file on referenced features
Confirmed.
Code: Select all
OS: Windows 8.1 Version 6.3 (Build 9600)
Word size of FreeCAD: 64-bit
Version: 0.21.29997 (Git)
Build type: Release
Branch: master
Hash: b52967d52ac46eff7c59e74d991f3f5b298944ef
Python 3.10.5, Qt 5.15.4, Coin 4.0.0, Vtk 9.1.0, OCC 7.6.2
Locale: Dutch/Netherlands (nl_NL)
Installed mods:
- Mon Aug 08, 2022 9:13 am
- Forum: TechDraw
- Topic: missing file on Tolerancing wiki page
- Replies: 6
- Views: 446
Re: missing file on Tolerancing wiki page
These two links (and the translation tags) have been removed.
- Sat Aug 06, 2022 11:44 pm
- Forum: Python scripting and macros
- Topic: Does wire.discretize(Number=nb) preserves the shape of curve?
- Replies: 1
- Views: 171
Re: Does wire.discretize(Number=nb) preserves the shape of curve?
Create a Draft_Rectangle and then run this code:
Code: Select all
doc = App.ActiveDocument
obj = doc.getObject("Rectangle")
wire = obj.Shape.Wires[0]
pts = wire.discretize(30)
import Draft
Draft.make_wire(pts)
- Sat Aug 06, 2022 11:03 pm
- Forum: Wiki
- Topic: Sketcher Workbench pages (status of each page)
- Replies: 5
- Views: 15591
Re: Sketcher Workbench pages (status of each page)
The page is incorrectly named You are wrong there. The name of the page is correct. But if you use Std_WhatsThis and click on the toolbar button you are directed to the Sketcher_CompCreateCircle page, which is the wrong page. You should be directed to Sketcher_CompConstrainRadDia (which should incl...