Search found 20156 matches

by wmayer
Wed Apr 24, 2024 4:07 pm
Forum: Forum in Deutsch
Topic: RANT: Bin vom git Zustand genervt.
Replies: 4
Views: 87

Re: RANT: Bin vom git Zustand genervt.

Ich habe den PR gefunden, der die Hilfskreise eingeführt hat und augenscheinlich ist das gar kein Bug, sondern Absicht:
https://github.com/FreeCAD/FreeCAD/pull/12012

Also zumindest erschließt sich mir die Sinnhaftigkeit des Hilfskreis im obigen Szenario nicht so recht.
by wmayer
Wed Apr 24, 2024 3:51 pm
Forum: Forum in Deutsch
Topic: RANT: Bin vom git Zustand genervt.
Replies: 4
Views: 87

Re: RANT: Bin vom git Zustand genervt.

scheinbar filtern die freebsd leute es gut heraus Was filtern die heraus? Bugs? Früher hat man damit aber trotzdem arbeiten können. Das etwas nicht funktioniert hat war selten. Inzwischen ist das die Regel. Ich habe den Eindruck die Entwickler testen das was sie einchecken überhaupt nicht mehr. Ja,...
by wmayer
Tue Apr 23, 2024 3:19 pm
Forum: Forum in Deutsch
Topic: NullShapeException bei Boolscher operation
Replies: 4
Views: 209

Re: NullShapeException bei Boolscher operation

Die Programm-Version ist die etwas betagte 0.20.29410.
by wmayer
Tue Apr 23, 2024 2:47 pm
Forum: Open discussion
Topic: Backport AttachmentSupport to 0.21?
Replies: 9
Views: 505

Re: Backport AttachmentSupport to 0.21?

It's not possible to make Python feature behave exactly like C++ features. For a C++ feature the properties are class members and thus already set at compile time. When an instance is created the properties are registered inside the constructor. Now when restoring the feature from a project file it'...
by wmayer
Mon Apr 22, 2024 6:19 pm
Forum: Open discussion
Topic: Backport AttachmentSupport to 0.21?
Replies: 9
Views: 505

Re: Backport AttachmentSupport to 0.21?

Are these available in the Python API? A quick search shows that in src/mod there is no *.py file that calls these methods.
This is only possible with C++ classes.
by wmayer
Mon Apr 22, 2024 3:21 pm
Forum: Help on using FreeCAD
Topic: Regression: Undocked Property View won't yield
Replies: 2
Views: 205

Re: Regression: Undocked Property View won't yield

With today's build Since which build number or commit do you see the regression? if changes are made to the undocked treeview What kind of changes? (with overlay system active) And if it's not active do you see the regression, too? then an undocked Property view no longer drops behind the current a...
by wmayer
Mon Apr 22, 2024 3:13 pm
Forum: Open discussion
Topic: Backport AttachmentSupport to 0.21?
Replies: 9
Views: 505

Re: Backport AttachmentSupport to 0.21?

For reading an old project file the class PropertyContainer has two virtual methods handleChangedPropertyName and handleChangedPropertyType that are overridden for all feature classes where a property type or name has changed. To support to write as older version something similar is needed. It's ag...
by wmayer
Mon Apr 22, 2024 2:34 pm
Forum: Help on using FreeCAD
Topic: what happened to the 3D view FC colors and shininess?
Replies: 43
Views: 3471

Re: what happened to the 3D view FC colors and shininess?

The problem was that previously, the program only used diffuse colors. Yes and no. The possibility to use emissive, specular and ambient color already exists for 15 years or more (see https://github.com/FreeCAD/FreeCAD/blob/c7985e5c06668ec11f60ed25f05b5d8d732ab7ed/src/Gui/ViewProviderGeometryObject...
by wmayer
Mon Apr 22, 2024 2:22 pm
Forum: Help on using FreeCAD
Topic: what happened to the 3D view FC colors and shininess?
Replies: 43
Views: 3471

Re: what happened to the 3D view FC colors and shininess?

As said earlier in this thread the actual problem is caused by changing the default specular color from black to mid gray.
by wmayer
Mon Apr 22, 2024 9:03 am
Forum: Open discussion
Topic: Backport AttachmentSupport to 0.21?
Replies: 9
Views: 505

Re: Backport AttachmentSupport to 0.21?

I also disagree to backport this change. The point is that you cannot expect to correctly load a file in an older version that was created with a newer version. Since this is a breaking change it may cause a big mess if some users have an older 0.21 version without that change and some other users a...