Bernd Hahnebach
b22a01a24b
FEM: ccx tools, use working dir prefs from solver framework
2019-03-31 11:18:10 +02:00
Bernd Hahnebach
21228abcd2
FEM: utils, add a method to get the solver working dir
2019-03-31 11:18:10 +02:00
Bernd Hahnebach
73813d112c
FEM: unit tests, use join from os package
2019-03-31 11:18:10 +02:00
Abdullah Tahiri
bbdbcc487b
Sketcher: Fix bug in curvature graph
...
====================================
https://forum.freecadweb.org/viewtopic.php?f=3&t=34979&p=295324#p295324
2019-03-31 11:12:05 +02:00
Sabin Iacob
72676b4690
path: use XMax/YMax for sorting shapes in PathAreaOp
2019-03-30 16:02:14 +01:00
Sabin Iacob
6cc1628286
Path: sort shapes in PathAreaOp before executing
2019-03-30 16:02:02 +01:00
Fredrik Johansson
c61aa71ff6
Enhance url addressbar, toggle hide from action
2019-03-30 14:10:47 +01:00
Fredrik Johansson
e19e1d8519
Implement url adress widget
2019-03-30 14:10:47 +01:00
Fredrik Johansson
a37707185e
Add viewsource for QWebKit
2019-03-30 14:10:46 +01:00
Fredrik Johansson
d429e90b11
Fix for Qt4 and QWebKit
2019-03-30 14:10:46 +01:00
Fredrik Johansson
1a7e7e378c
Fix local paths for windows
2019-03-30 14:10:46 +01:00
Fredrik Johansson
2637801003
Cleanup
2019-03-30 14:10:46 +01:00
Fredrik Johansson
f03fe1ce91
Favicon stuff
2019-03-30 14:10:46 +01:00
Fredrik Johansson
724b565669
Documentation
2019-03-30 14:10:45 +01:00
Fredrik Johansson
334a8fae32
Fix chrash on local *.py links, thread issue
2019-03-30 14:10:45 +01:00
Fredrik Johansson
5cd43ef38e
Add back/forward automatic activation
2019-03-30 14:10:45 +01:00
Fredrik Johansson
af31814863
Make zoom work, zoom everything not just text
2019-03-30 14:10:45 +01:00
Fredrik Johansson
0afc292487
Support QWebEngine BrowserView, QWebkit still suppported through cmake option
2019-03-30 14:10:45 +01:00
Yorik van Havre
0072c372ca
Draft: Better tooltip for Draft precision pref settings
2019-03-29 11:48:11 -03:00
Yorik van Havre
4ea3508967
Arch: Wall, structure, window and panel tools now remember and keep last used values
2019-03-28 17:02:54 -03:00
wandererfan
11abf09299
Add Preference for Dimension Format
2019-03-28 10:44:33 -03:00
wandererfan
626ee0c98d
Fix TD Dfx export - spline conversion
2019-03-28 10:44:33 -03:00
wandererfan
0d60f6dc79
Add pref for new Dxf Exporter
2019-03-28 10:44:33 -03:00
wandererfan
576ef73cc4
Fix unnecessary update on Save
2019-03-28 10:44:33 -03:00
wandererfan
730cdc6105
Fix missing offside arrow tail
2019-03-28 10:44:33 -03:00
Yorik van Havre
c040a3c6f5
Arch: Fixed IFC misc export issues, support for objects inside App Parts
2019-03-27 17:34:36 -03:00
Yorik van Havre
5695f441cf
Arch: Store last used wall thickness and height values
2019-03-27 16:40:26 -03:00
Yorik van Havre
ce599456c9
Arch: Fixed missing files in cmake
2019-03-27 16:10:06 -03:00
Yorik van Havre
7e5ad96704
Merge branch 'master' of https://github.com/carlopav/FreeCAD into carlopav-master
2019-03-27 15:57:31 -03:00
Yorik van Havre
fd658a00be
Merge branch 'fix-ifc' of https://github.com/Moult/FreeCAD into Moult-fix-ifc
2019-03-27 11:57:22 -03:00
wmayer
218e174f24
fix handling of OCC exceptions, fix -Wunused-but-set-variable, fix -Wunused-parameter
2019-03-24 02:17:54 +01:00
wmayer
8baab52737
suppress VS2917 warnings: C4267
2019-03-23 17:28:32 +01:00
wmayer
36849ffaf3
Improve project on surface dialog:
...
make function undo/redoable
work on document that was active when the dialog was opened
handle case when object or document is deleted while dialog is open
2019-03-22 17:18:12 +01:00
MA-DEVELOP\apeltauer
ef10c73782
transform sub shapes to global position
2019-03-22 17:18:12 +01:00
MA-DEVELOP\apeltauer
91e871d5cc
improve creating the edges/wire in parametric space
2019-03-22 17:18:11 +01:00
MA-DEVELOP\apeltauer
4fcf8c1efb
make a face copy
2019-03-22 17:18:11 +01:00
MA-DEVELOP\apeltauer
9e65f4c169
make a explicit copy
2019-03-22 17:18:11 +01:00
MA-DEVELOP\apeltauer
657656dee6
imrove the projection algorithm
2019-03-22 17:18:11 +01:00
apeltauer
f747d1cb46
Change the vector type to non const
...
I dont know why this fails on linux. On windows this works....
2019-03-22 17:18:10 +01:00
apeltauer
4f08bb5c76
add gp_dir include
2019-03-22 17:18:10 +01:00
MA-DEVELOP\apeltauer
0efd3a8811
add new feature "Projection on surface"
2019-03-22 17:18:09 +01:00
MA-DEVELOP\apeltauer
f4971d723f
first working ui
2019-03-22 17:18:09 +01:00
wandererfan
64b85f3184
Fix OCC error handling
...
- GeometryObject.cpp used OCC "Raise" to signal error
condition, but this is only caught in GuiDocument.cpp.
Changed to catch exception locally.
2019-03-22 11:00:14 -03:00
furti
a8aef43d2f
Fix broken texture loading for PY 3 builds
...
The problem was that Python 3 wants a bytes object and not a string.
So we have to encode the string first to make it useable. Python 2 handles
bytes objects as normal strings so the fix should be backwards compatible.
Furthermore this commit adds a massive performance improvement by collecting
all bytes in a list and calling "join" at the end. This is significantly
faster than simply appending each byte to the bytes object one at one.
https://forum.freecadweb.org/viewtopic.php?f=3&t=35032
2019-03-22 10:59:26 -03:00
luz.paz
ad0ee86589
Misc. source comment typos
2019-03-22 10:44:14 -03:00
luz.paz
2e4e9c6d4e
Add some more user-facing typo fixes
2019-03-22 10:44:14 -03:00
luz.paz
2ec8128338
Crowdin: cont...
2019-03-22 10:44:14 -03:00
luz.paz
3652a8a54a
Crowdin: follow-up to previous commit
2019-03-22 10:44:14 -03:00
luz.paz
5103002df9
Crowdin: continuing translation string refinements/fixes
2019-03-22 10:44:14 -03:00
furti
41b85bb8cd
Add option to fill cut shapes with material colors
...
Previously when setting the "Show Fill" property of the TechDraw Arch
Section View to true, the areas where always filled with a default grey
color.
This commit adds a property called "UseMaterialColorForFill" to the
ArchSectionPlane. When set to true, it will use the objects material
color to fill the cut shapes and fall back to the default color
when no Material is found.
2019-03-22 10:36:07 -03:00