mwganson
9a3fe1fb78
TaskCheckGeometry -- log geometry check errors to report view
2019-06-26 12:13:23 +02:00
mwganson
961ffce93e
TaskCheckGeometry settings panel with runBOPCheck option
2019-06-26 12:02:43 +02:00
Zheng, Lei
0bab393394
BrowserView: fix QWebEngine focus problem
2019-06-26 11:10:51 +02:00
luz.paz
7f67c13100
[AddonManager] Add Inventor Loader logo to icons/
...
Relevant thread https://forum.freecadweb.org/viewtopic.php?f=9&t=36556&hilit=addon+manager&start=30#p314729
2019-06-26 11:02:31 +02:00
wmayer
e0db5b62be
workaround in PyCXX classes due to removed support of old-style classes
2019-06-25 18:15:10 +02:00
Bernd Hahnebach
76953d933c
FEM: gui commands, typo in comment
2019-06-25 14:02:12 +02:00
Bernd Hahnebach
72d4c36f2b
FEM: gmsh tools, comment not used variable
2019-06-25 00:14:43 +02:00
Bernd Hahnebach
73d8b31b55
FEM: mesh tools, quad4, fix mesh area (this has been wrong for years :-()
2019-06-25 00:14:43 +02:00
Bernd Hahnebach
c06178bf21
FEM: lgtm, red rid of unnecessary assignments
2019-06-25 00:14:43 +02:00
Bernd Hahnebach
79016e0881
Materials: code formating, flake8
2019-06-25 00:14:43 +02:00
Bernd Hahnebach
f445e34fb8
FEM: vtk post processing, fix result type names in linearization plot
2019-06-25 00:14:43 +02:00
Bernd Hahnebach
499703b265
FEM: gmsh mesh tools, do not use error message to print some log
2019-06-25 00:14:43 +02:00
Bernd Hahnebach
5f6352c6ec
FEM: gmsh mesh tools, add some comments
2019-06-25 00:14:43 +02:00
wmayer
3c205946e2
fixes #0003993 : Memory leak with Python3
2019-06-24 14:30:12 +02:00
sliptonic
00f082c97d
Merge pull request #2282 from sliptonic/lgtmcleanup
...
Lgtmcleanup
2019-06-23 17:29:40 -05:00
wmayer
78c21009a0
suppress warnings caused by netgen
2019-06-23 22:53:51 +02:00
wmayer
da6155d0ae
Fix a couple of gcc compiler warnings:
...
-Wint-in-bool-context
-Wunused-function
2019-06-23 15:35:49 +02:00
wmayer
85270f5cd3
Fix a couple of clang compiler warnings:
...
-Wunused-variable
-Winconsistent-missing-override
-Wdelete-non-virtual-dtor
-Wunused-private-field
-Wformat
2019-06-23 15:19:12 +02:00
Abdullah Tahiri
b9417938c4
Sketcher: Fix Carbon copy leads to unsolvable sketch
...
====================================================
fixes #3973
https://forum.freecadweb.org/viewtopic.php?p=316251#p316198
This commit disables an old "axis orientation correction mode", which tried to
solve a problem with orientation of the axis. It never worked fine and it should
have never been introduced, as everything it intends to do should be done by
setting the appropriate placement offset.
2019-06-23 15:15:46 +02:00
wmayer
81f37959a7
fix -Winconsistent-missing-override
2019-06-23 10:37:28 +02:00
Abdullah Tahiri
e72b48e0cf
ViewProviderAttachExtension: check for attach extension
2019-06-23 01:03:37 +02:00
Abdullah Tahiri
62975d2fcf
Part Gui: Update attachment icon on attach extension change
2019-06-23 01:03:36 +02:00
Abdullah Tahiri
511bb070b9
PartDesign Gui: Extend ViewProviderDatum with Part::ViewProviderAttachExtension
2019-06-23 01:03:36 +02:00
Abdullah Tahiri
85c37aa6c0
PartDesign Gui: Extend ViewProvider with Part::ViewProviderAttachExtension
2019-06-23 01:03:36 +02:00
Abdullah Tahiri
680364b171
Part Gui: New ViewProvider extension for overlaying icons related to Part::AttachExtension
2019-06-23 01:03:36 +02:00
Abdullah Tahiri
4150488139
Gui::Add mergeoverlay function to ViewProviderExtension
2019-06-23 01:03:36 +02:00
Abdullah Tahiri
db5ef314bf
Gui: BitmapFactory new static function to make icon overlays with pixmaps
2019-06-23 01:03:35 +02:00
Abdullah Tahiri
7602d39dda
Pixmap: Make bigger attachment icon
2019-06-23 01:03:35 +02:00
Abdullah Tahiri
2ac5707072
PartDesign: Refactor set/remove tip in the new Gui::ViewProvider mechanism
2019-06-23 01:03:35 +02:00
Abdullah Tahiri
321e9215d4
PartDesign: Extend Datums ViewProvider to overlay attachment status
2019-06-23 01:03:35 +02:00
Abdullah Tahiri
b0fdf138b8
Gui: Extend ViewProvider to enable merging of overlays on icon
2019-06-23 01:03:35 +02:00
Abdullah Tahiri
e632e9feb8
Sketcher: Fix carbon copy construction points
...
=============================================
fixes #3926
Points made of construction type are special non-constrainable points, such as (current) bspline knots.
This was not intended in Carbon Copy.
2019-06-22 23:15:07 +02:00
Abdullah Tahiri
0635822415
Sketcher: Polyline snap arc to 45 degrees bug fix
...
=================================================
fixes #3974
Snapping to 45 degrees during arc creation (hold ctrl during an arc within a polyline), resulted in
reduced precision, because Gui::Command::doCommand %f defaults only to six decimal positions, which is
a poor representation in radians of, for example, 90 degrees.
A work-around could have been to hardcode a higher number of decimals, as in %0.Xf. However, I do not like
such magic numbers.
The solution chosen is to use an App.Quantity object using as units degrees, which leads to no loss of precision.
2019-06-22 17:22:40 +02:00
wmayer
933ed45e1a
code simplification in PythonWrapper
2019-06-22 14:32:50 +02:00
wmayer
cabb733968
issue #0003984 : Creating a Path Job object fails with 'PySide2.QtWidgets.QDialog' object has no attribute 'templateGroup'
2019-06-22 12:32:36 +02:00
Abdullah Tahiri
3810381d92
Sketcher: fixes no horizontal/vertical on segment after horizontal/vertical alignment
...
=====================================================================================
Selecting first the horizontal/vertical constraint and applying to a line segment with
a previous horizontal/vertical alignment constraint caused FreeCAD to refuse applying it.
fixes #4013
2019-06-22 09:58:42 +02:00
Abdullah Tahiri
f22d1393c7
Sketcher: Toolbar - add toggle deactivated state command
2019-06-22 08:26:31 +02:00
Abdullah Tahiri
2822381d44
Sketcher: ViewProvider representation of deactivated constraints
2019-06-22 08:26:31 +02:00
Abdullah Tahiri
8b5ee49db8
Sketcher: Settings - Deactivated constraints color selection
2019-06-22 08:26:31 +02:00
Abdullah Tahiri
70081d739b
Sketcher: Constraints' widget deactivated constraints commands and representation
2019-06-22 08:26:31 +02:00
Abdullah Tahiri
4de857a471
Sketcher: GUI command to activate/deactivate constraints
2019-06-22 08:26:31 +02:00
Abdullah Tahiri
7e3fd1a343
Sketcher: Update icon resources
2019-06-22 08:26:31 +02:00
Abdullah Tahiri
76097838db
Sketcher: Art - Toggle Active Constraint icon
2019-06-22 08:26:31 +02:00
Abdullah Tahiri
f45d0e54c0
Sketcher: Python interface to SketchObject constraint state
2019-06-22 08:26:31 +02:00
Abdullah Tahiri
e06e03dccb
Sketcher: Extend SketchObject to handle constraint state
2019-06-22 08:26:31 +02:00
Abdullah Tahiri
20a83b82f6
Sketcher: Solver interface of activated state
2019-06-22 08:26:31 +02:00
Abdullah Tahiri
7fad315613
Sketcher: Python interface to contraints' activated state
2019-06-22 08:26:31 +02:00
Abdullah Tahiri
7cd3dd7dc4
Sketcher: Extend Constraints to have an activated boolean state
2019-06-22 08:26:31 +02:00
sliptonic
b55c210f39
remove unnecessary imports. normalize debug log levels
2019-06-21 13:01:01 -05:00
sliptonic
4a984de243
Path: normalize proxy stratements
...
remove bare exceptions
2019-06-21 13:01:01 -05:00