Search found 8387 matches

by Roy_043
Fri Apr 12, 2024 12:45 pm
Forum: Help on using FreeCAD
Topic: Connected hexagons
Replies: 6
Views: 339

Re: Connected hexagons

by Roy_043
Fri Apr 12, 2024 9:34 am
Forum: Wiki
Topic: Tree view overlay icons: need help with new screenshots (32px)
Replies: 2
Views: 204

Tree view overlay icons: need help with new screenshots (32px)

The Tree view overlay icons have been updated. The Wiki needs new screenshots. Sadly I can only create them at 16px, setting the Tree view icon size in the preferences does not work properly yet. Can somebody with a higher res display please assist? The background needs to be white, but you do not h...
by Roy_043
Fri Apr 12, 2024 7:35 am
Forum: Help on using FreeCAD
Topic: Creating pad adds a random flat square hovering above the part
Replies: 8
Views: 623

Re: Creating pad adds a random flat square hovering above the part

Welcome. Post your file please. Without it helping is almost impossible.
by Roy_043
Thu Apr 11, 2024 6:53 pm
Forum: Python scripting and macros
Topic: How to use App::PropertyColorList
Replies: 7
Views: 540

Re: How to use App::PropertyColorList

What I have said about the name is not correct. I was playing around and at some point checked the "Show all" option in the Tree view context menu. Apparently ColorList properties are hidden by default. Maybe because the average user would have a hard time editing such a property. The name...
by Roy_043
Thu Apr 11, 2024 6:38 pm
Forum: Help on using FreeCAD
Topic: Transform tool has lost its 3D appearance
Replies: 11
Views: 708

Re: Transform tool has lost its 3D appearance

This is not a regression, but of course you do not have to like the new look. Note that planar draggers have been added.
by Roy_043
Thu Apr 11, 2024 5:03 pm
Forum: Python scripting and macros
Topic: How to use App::PropertyColorList
Replies: 7
Views: 540

Re: How to use App::PropertyColorList

the property wont appear under "Animation" Remove the underscore from the property name. still an empty list after append. obj.addProperty("App::PropertyColorList", "SolidColors", "Animation", "list of colors for each solid") obj.SolidColors += [(1,...
by Roy_043
Thu Apr 11, 2024 4:42 pm
Forum: Help on using FreeCAD
Topic: Transform tool has lost its 3D appearance
Replies: 11
Views: 708

Re: Transform tool has lost its 3D appearance

The blue arc in the new version should not cross the green arc.
by Roy_043
Wed Apr 10, 2024 8:10 pm
Forum: Python scripting and macros
Topic: Sketcher workbench scripts.
Replies: 5
Views: 465

Re: Sketcher workbench scripts.

Grub wrote: Wed Apr 10, 2024 6:25 am FreeCAD suffers from the absence of the quick centre point:
The current dev has this feature now:
https://github.com/FreeCAD/FreeCAD/pull/13147
by Roy_043
Wed Apr 10, 2024 7:56 pm
Forum: Draft, Arch & BIM
Topic: Beam does not always span the two given points when using keyboard input
Replies: 8
Views: 1186

Re: Beam does not always span the two given points when using keyboard input

PR to fix the beam length issue:
https://github.com/FreeCAD/FreeCAD/pull/13399

The PR also improves the accuracy of the length of a beam created by picking both points in the 3D view.
by Roy_043
Wed Apr 10, 2024 12:26 pm
Forum: Help on using FreeCAD
Topic: Arch Wall tool renders wrong, passes Geometry check
Replies: 11
Views: 890

Re: Arch Wall tool renders wrong, passes Geometry check

The sketch has 2 wires. One of which consists of the 3 short edges in the sketch that share a common point (wire is not the same as polyline here). That wire is processed as two polylines by the code, resulting in what you see in the image. Not what is expected by the user, but correct geometry none...