Search found 481 matches

by edi
Fri Mar 15, 2024 9:41 am
Forum: Install / Compile
Topic: [SOLVED] make failure (Opensuse)
Replies: 3
Views: 450

Re: [SOLVED] make failure (Opensuse)

I have the same issue. When entering git submodule update --init --recursive I receive the message: fatal: Zielpfad '/home/edi/Dokumente/FreeCAD_Entwicklung/compiled_Version/freecad-source/tests/lib' existiert bereits und ist kein leeres Verzeichnis. fatal: klonen von »https://github.com/google/goog...
by edi
Tue Mar 12, 2024 5:23 pm
Forum: Forum in Deutsch
Topic: [gelöst] TechDraw zeigt falsche Masse
Replies: 8
Views: 525

Re: [gelöst] TechDraw zeigt falsche Masse

G-Body wrote: Thu Mar 07, 2024 11:32 am In der Isometrischen-Darstellung taucht das Problem jetzt wieder auf... :?
Bitte bei viewtopic.php?t=85929 nachlesen, und im wiki: https://wiki.freecad.org/TechDraw_AxoLengthDimension.
by edi
Tue Mar 12, 2024 4:51 pm
Forum: TechDraw
Topic: Interline spacing - Cascade Horizontal/Vertical Dimensions
Replies: 3
Views: 316

Re: Interline spacing - Cascade Horizontal/Vertical Dimensions

Use Cascade Spacing in https://wiki.freecad.org/TechDraw_Exten ... Attributes. First set the cascade spacing value, then use the Cascade Horizontal Dimensions tool.
by edi
Tue Mar 12, 2024 2:02 pm
Forum: TechDraw
Topic: TechDraw ISOmetric view
Replies: 9
Views: 955

Re: TechDraw ISOmetric view

edi wrote: Sat Mar 09, 2024 5:35 pm Unfortunately AxoLenthDimension is not working correct if the view has a scale other than 1.0.
The issue has been solved, AxoLengthDimension will work on scaled views in the next weekly build.
by edi
Sat Mar 09, 2024 5:35 pm
Forum: TechDraw
Topic: TechDraw ISOmetric view
Replies: 9
Views: 955

Re: TechDraw ISOmetric view

Unfortunately AxoLenthDimension is not working correct if the view has a scale other than 1.0. I will have a look in the next time.
by edi
Fri Mar 08, 2024 5:35 pm
Forum: TechDraw
Topic: TechDraw ISOmetric view
Replies: 9
Views: 955

Re: TechDraw ISOmetric view

wildCAD wrote: Fri Mar 08, 2024 2:37 am Unfortunately this does not work with "Axonometric length dimensions" :(.
It's working in Version 0.22 and above, see https://wiki.freecad.org/TechDraw_AxoLengthDimension.
by edi
Thu Feb 08, 2024 9:17 am
Forum: Python scripting and macros
Topic: Add 2D Drawing Quotes
Replies: 6
Views: 755

Re: Add 2D Drawing Quotes

How can i get the right index number for the vertexes in the 2D drawing? You can use the index numbers of the 3d model to create dimensions in the 2d TechDraw drawing. Create a TechDraw drawing of a simple cube. Use the following script to create dimensions using the index numbers ('Vertex1','Verte...
by edi
Thu Feb 01, 2024 3:22 pm
Forum: Python scripting and macros
Topic: Add 2D Drawing Quotes
Replies: 6
Views: 755

Re: Add 2D Drawing Quotes

To create a linear dimension use: import TechDraw TechDraw.makeDistanceDim(view,'DistanceX',fromPoint,toPoint) Find attached an example script performing the Create Horizontal Chain Dimensions tool: import TechDraw class createHorizChainDimension: ''' create a horicontal chain dimension - select sev...
by edi
Fri Jan 19, 2024 6:30 pm
Forum: TechDraw
Topic: Unexpected Offset with Adding Circle Center lines.
Replies: 17
Views: 1593

Re: Unexpected Offset with Adding Circle Center lines.

See what happenes: the cosmetic lines seem to be rotated around the center of the section view.
SectionTest.png
SectionTest.png (35.07 KiB) Viewed 730 times
Similar happenes if you create center lines using a face. Instead of a horizontal line, a vertical one is created and vice versa. Also all lines created through two points are swapped.
by edi
Fri Jan 19, 2024 5:20 pm
Forum: TechDraw
Topic: Unexpected Offset with Adding Circle Center lines.
Replies: 17
Views: 1593

Re: Unexpected Offset with Adding Circle Center lines.

All cosmetic edges in the section view have swapped their x and y coordinates. Instead of (x1/y1)---(x2/y2) the edge (y1/x1)---(y2/x2) is created.