[BUG-FIXED] Crash on Datum plane

Post here for help on using FreeCAD's graphical user interface (GUI).
Forum rules
and Helpful information
IMPORTANT: Please click here and read this first, before asking for help

Also, be nice to others! Read the FreeCAD code of conduct!
User avatar
PrzemoF
Veteran
Posts: 3520
Joined: Fri Jul 25, 2014 4:52 pm
Contact:

[BUG-FIXED] Crash on Datum plane

Post by PrzemoF »

Can someone test it?
phpBB [video]

It ends up with hard crash.

Edit: Video replaced with open source format/better quality recording
chrisb
Veteran
Posts: 54213
Joined: Tue Mar 17, 2015 9:14 am

Re: [BUG?] Crash on Datum plane

Post by chrisb »

I see the same behaviour here. FreeCAD crashes after confirming the question how to attach. Which version do you use?

OS: macOS High Sierra (10.13)
Word size of OS: 64-bit
Word size of FreeCAD: 64-bit
Version: 0.19.16933 (Git)
Build type: Release
Branch: master
Hash: 4494d384a6b7e183dd4ae12baadfcf6972039c45
Python version: 3.7.3
Qt version: 5.9.7
Coin version: 4.0.0a
OCC version: 7.3.0
Locale: English/Germany (en_DE)
A Sketcher Lecture with in-depth information is available in English, auf Deutsch, en français, en español.
User avatar
PrzemoF
Veteran
Posts: 3520
Joined: Fri Jul 25, 2014 4:52 pm
Contact:

Re: [BUG?] Crash on Datum plane

Post by PrzemoF »

Thanks for the test! My version is unknown :D It's the official one from fedora 30 unless I messed up something

OS: "Fedora release 30 (Thirty)"
Word size of OS: 64-bit
Word size of FreeCAD: 64-bit
Version: 0.18.Unknown
Build type: Unknown
Python version: 3.7.3
Qt version: 4.8.7
Coin version: 3.1.3
OCC version: 6.9.1.oce-0.18
Locale: Polish/Poland (pl_PL)
UR_
Veteran
Posts: 1355
Joined: Tue Jan 03, 2017 8:42 pm

Re: [BUG?] Crash on Datum plane

Post by UR_ »

Got this report view (win 10):

PartDesign::Plane / DatumPlane: Links go out of the allowed scope
QWindowsWindow::setGeometry: Unable to set geometry 487x243+1678+956 on QWidgetWindow/'PartDesignGui__DlgReferenceWindow'. Resulting geometry: 487x256+1678+956 (frame: 11, 45, 11, 11, custom margin: 0, 0, 0, 0, minimum size: 377x218, maximum size: 16777215x16777215).
QWindowsWindow::setGeometry: Unable to set geometry 487x243+1678+956 on QWidgetWindow/'PartDesignGui__DlgReferenceWindow'. Resulting geometry: 487x256+1678+956 (frame: 11, 45, 11, 11, custom margin: 0, 0, 0, 0, minimum size: 377x218, maximum size: 16777215x16777215).
Unhandled Base::Exception caught in GUIApplication::notify.
The error message is: Access violation

The event type 3 was sent to QPushButton
Object tree:
QPushButton is child of
QDialogButtonBox is child of
Gui::TaskView::TaskEditControl is child of
Gui::TaskView::TaskPanel is child of
QWidget (qt_scrollarea_viewport) is child of
Gui::TaskView::TaskView is child of
QStackedWidget (qt_tabwidget_stackedwidget) is child of
QTabWidget (combiTab) is child of
Gui::DockWnd::CombiView (Combo View) is child of
QDockWidget (Combo View) is child of
Gui::MainWindow


version:
OS: Windows 10
Word size of OS: 64-bit
Word size of FreeCAD: 64-bit
Version: 0.19.16987 (Git)
Build type: Release
Branch: master
Hash: 5fb2dfedd122acd9ca5a68fe9e9090937df8d5fb
Python version: 3.6.6
Qt version: 5.6.2
Coin version: 4.0.0a
OCC version: 7.3.0
Locale: German/Germany (de_DE)
TheMarkster
Veteran
Posts: 5513
Joined: Thu Apr 05, 2018 1:53 am

Re: [BUG?] Crash on Datum plane

Post by TheMarkster »

Attaching the plane to the Part xy_plane makes it out of the allowed scope, as shown in the dependency graph. It should be attached to the body xy_plane instead. If there is a reason you wish to have a plane attached to the Part xy_plane, you could create a Part workbench plane in the Part workbench and attach it to the Part xy_plane, then create a shapebinder of the Part workbench plane, then create the part design plane and attach it to the shapebinder.
part-plane-shapebinder.png
part-plane-shapebinder.png (48.19 KiB) Viewed 551 times
chrisb
Veteran
Posts: 54213
Joined: Tue Mar 17, 2015 9:14 am

Re: [BUG?] Crash on Datum plane

Post by chrisb »

That's right, but FreeCAD should not crash, and it doesn't on other similar occasions, like when attaching a cube to the external plane.
A Sketcher Lecture with in-depth information is available in English, auf Deutsch, en français, en español.
wmayer
Founder
Posts: 20309
Joined: Thu Feb 19, 2009 10:32 am
Contact:

Re: [BUG?] Crash on Datum plane

Post by wmayer »

The actual problem is that the reference dialog doesn't handle the copy creation of axis elements (planes or lines) and thus the function TaskFeaturePick::makeCopy returns a null pointer.

The second part of the problem is that the link property then holds a null pointer which wasn't correctly handled internally. This is fixed now with git commit 588c26529.

With the above fix it still doesn't work to create a reference to the axis element of the Part container, it just fixes the crash. So, the question is how should this be handled?
chrisb
Veteran
Posts: 54213
Joined: Tue Mar 17, 2015 9:14 am

Re: [BUG?] Crash on Datum plane

Post by chrisb »

I just tried (still with the old version) to create a ShapeBinder of the plane, which I would see as the proper solution. As it results in the same crash, I guess it will not work either in the fixed version.

I don't have a use case at hand, but I think it could be sensible to reference the coordinate system of the outer PartContainer. A workaround is easy by creating a cube in the center of the PartContainer, but it remains a workaround.
A Sketcher Lecture with in-depth information is available in English, auf Deutsch, en français, en español.
wmayer
Founder
Posts: 20309
Joined: Thu Feb 19, 2009 10:32 am
Contact:

Re: [BUG?] Crash on Datum plane

Post by wmayer »

I just tried (still with the old version) to create a ShapeBinder of the plane, which I would see as the proper solution. As it results in the same crash, I guess it will not work either in the fixed version.
Currently a ShapeBinder only works if the referenced object is a Part::Feature. The axis elements are App::Plane or App::Line so the ShapeBinder won't be able to create a shape of them.

Anyway, for now I added this fix which removes a dependency if the creation of a copy fails: git commit 9177b4057
This means that the datum plane doesn't reference any more the plane of the Part container.

The next step will be to adjust TaskFeaturePick::makeCopy to create a ShapeBinder and extend the latter to also support App::Plane and App::Line.
wmayer
Founder
Posts: 20309
Joined: Thu Feb 19, 2009 10:32 am
Contact:

Re: [BUG-FIXED] Crash on Datum plane

Post by wmayer »

git commit 18183bc79 supports Origin features
git commit 5ea062f66 creates a shape binder to make a copy of an Origin feature
Post Reply