Search found 769 matches

by Gift
Wed Jun 29, 2022 6:14 pm
Forum: Install / Compile
Topic: Install Error: Library Not Found
Replies: 5
Views: 1626

Re: Install Error: Library Not Found

Do you change this line?

If the file /usr/local/opt/llvm/lib/libc++abi.1.dylib exists you can overwrite @rpath to absolut path. The script change anyway this entry.

Code: Select all

install_name_tool -change @rpath/libc++abi.1.dylib /usr/local/opt/llvm/lib/libc++abi.1.dylib /usr/local/opt/llvm/lib/libc++.1.dylib
by Gift
Wed Jun 29, 2022 10:17 am
Forum: Developers corner
Topic: DXFNext
Replies: 26
Views: 6620

Re: DXFNext

adrianinsaval wrote: Tue Jun 28, 2022 9:07 pm Wire is a shape type and it is differentiable from stand alone edges. https://github.com/FreeCAD/FreeCAD/blob ... e.cpp#L465
...
Good idea. Wire could make it possible. Thanks.
by Gift
Tue Jun 28, 2022 7:50 pm
Forum: Forum in Deutsch
Topic: weekly-builds
Replies: 36
Views: 5733

Re: weekly-builds

@looo Hast du das auf dem Radar? :D
by Gift
Tue Jun 28, 2022 7:38 pm
Forum: Developers corner
Topic: DXFNext
Replies: 26
Views: 6620

Re: DXFNext

onekk wrote: Tue Jun 28, 2022 8:30 am
if the user has a Draft.Wire or a Part.Wire ...

...
That is your postulate. Internally there is no Part.Wire. That is a function, which create edges. Inspect the result of the script.
by Gift
Tue Jun 28, 2022 7:31 pm
Forum: Developers corner
Topic: DXFNext
Replies: 26
Views: 6620

Re: DXFNext

... So is reliability. Have you tested your solution with the full range of possible DXF files and features? ... The statement on the page to this topic is somewhat schizophrenic or modest. The praser is one element. The best library is no guarantor for the best product. I have searched for files t...
by Gift
Mon Jun 27, 2022 7:12 pm
Forum: Help on using FreeCAD
Topic: [Solved] - Curve length measurements ?
Replies: 21
Views: 2680

Re: Curve distance measurements ?

Ok let me clarify my question again : (see new image ) I DO NOT wish to measure the distance between two curves/arcs. I wish to measure the distance of a curved edge/line. The curve is not a circle or a geometric shape where I can measure or calculate the curved distance. R. Q3.jpg The distance is ...
by Gift
Mon Jun 27, 2022 7:03 pm
Forum: Developers corner
Topic: DXFNext
Replies: 26
Views: 6620

Re: DXFNext

Not if you state that a wire or a polygon is translated in a lwpoly when output as dxf. I have done in the past a similar thing for a cam program that used polylines. A polyline is simply some segmentes (lined) joined closed or not. Regards Carlo D. How do I know that the user has created a polylin...
by Gift
Mon Jun 27, 2022 6:49 pm
Forum: Help on using FreeCAD
Topic: [Solved] - Curve length measurements ?
Replies: 21
Views: 2680

Re: Curve distance measurements ?

If the center of the arcs is the same, simple r1 - r2 = distance.
by Gift
Mon Jun 27, 2022 6:36 pm
Forum: Forum in Deutsch
Topic: weekly-builds
Replies: 36
Views: 5733

Re: weekly-builds

Rechts klick auf FreCADxxxxxxx.app, dann "Paketinhalt anzeigen". Im Ordner Contents ist eine Datei Info.plist. Die muss folgendes enthalten: <key>CFBundleExecutable</key> <string>FreeCAD</string> Sonst muss du unter dem Ordner MacOS auch immer die ausführbarere Datei umbenennen. Ich hoffe ...
by Gift
Mon Jun 27, 2022 6:16 pm
Forum: Developers corner
Topic: DXFNext
Replies: 26
Views: 6620

Re: DXFNext

Why directly wires, or polygons, it would not be too difficult to extract points and pass them to a wire entity or maybe directly to a Part.makePolygon if you have already Part.LineSegments a lwpolyline could be made simply with: wire = Part.Wire("list of lines") Regards Carlo D. With Par...