WandererFan
94a647a94c
Fix Svg export page & text size in HiRez
2017-01-29 19:40:32 -05:00
WandererFan
5e62c6b2b8
Add arrowstyle preference
2017-01-29 19:40:32 -05:00
WandererFan
5007193541
Initial Bitmap fills for Faces
...
- also texture from svg (not used yet)
2017-01-29 19:40:32 -05:00
WandererFan
ad98ff1707
Restore lost dimension tail
2017-01-29 19:40:32 -05:00
WandererFan
fe617e1433
Make SVG hatches scalable
2017-01-29 19:40:32 -05:00
WandererFan
f68cbc83e3
Basic working HiResolution TD
2017-01-29 19:40:32 -05:00
wmayer
32bacd0b63
py3: ported Path to python3
2017-01-29 22:35:52 +01:00
Priit Laes
71f6a289c6
python: Path: *.py: Fix python3 syntax
2017-01-29 22:35:36 +01:00
Alexander Gryson
49c02b988b
Update Plot icon metadata
2017-01-29 20:21:22 +01:00
Alexander Gryson
1c07ca7a31
Align Plot Workbench icons to guidelines
2017-01-29 20:21:22 +01:00
Alexander Gryson
35c817e986
Update Ship icon Metadata
2017-01-29 20:21:22 +01:00
Alexander Gryson
806df184f7
Align Ship Workbench icons to guidelines
2017-01-29 20:21:22 +01:00
Alexander Gryson
ab196b5f8d
Correct outline color in sketcher icon
...
The select constraint icon incorrectly showed icon as having an orange outline. This was corrected, but after merge of PR.
2017-01-29 20:21:22 +01:00
Zheng, Lei
c4b599d691
Path.Area: fixed compiler warning
2017-01-29 18:59:52 +00:00
Yorik van Havre
ea2f8731e9
Start: misc fixes in startpage
2017-01-29 15:33:00 -02:00
drallod
357ecb5800
Path: Issue #0002817 :
...
Check if default post processor hasn't been lost
2017-01-29 10:42:13 -06:00
Yorik van Havre
fc2010baa8
Arch: Export rebars to IFC as SweptDiskSolids + fixed half-done py3 compatibility - fixes #2684
2017-01-29 14:27:42 -02:00
Zheng, Lei
65f01daee2
Path.Area: fixed auto workplane correction
2017-01-29 20:25:13 +08:00
Zheng, Lei
fbcffa12d2
Path.Area: fixed auto workplane finding logic
2017-01-29 20:17:18 +08:00
Zheng, Lei
228a0dc905
Path.Area: fixed non-circular curve handling, etc.
...
* Fixed non-circular curve orientation handling
* Section changed to use Part::CrossSection, because it seems
BRepAlgoAPI_Section has trouble with non-circular curves (LastParameter
becomes huge which causes discretization to produce many many points)
* Exposed Area.makeSections() to section with variable heights
* Modified Area.setPlane() to accept non-planar shape
* Exposed Area.getPlane() to obtain current workplane
* Exposed Area.Shapes attribute to return the current holding children
shape.
2017-01-29 18:24:01 +08:00
Abdullah Tahiri
9725be8686
Sketcher: Documentation of delete functions
2017-01-29 00:25:34 +01:00
Abdullah Tahiri
0edf17245c
Sketcher: Fix deletion of geometry having internal geometry inserted before the geometry
2017-01-28 23:08:27 +01:00
Markus Lampert
d4da536d4c
Restored exception masking - although i'm not sure it's a good thing.
2017-01-28 11:46:17 -08:00
Markus Lampert
c9c7d19a82
Import pivy only if gui is up.
2017-01-28 11:46:17 -08:00
Markus Lampert
013043b18c
Refactored cmake file once again - exposing root exception.
2017-01-28 11:46:17 -08:00
Markus Lampert
e1a22b796e
Fixed unit tests for the case where LineOld is not set to false.
2017-01-28 11:46:17 -08:00
Markus Lampert
831e467f9e
Refactored cmake file and added TestPathCore.
2017-01-28 11:46:16 -08:00
ml
ea7789b8b6
Fixed merge issues and re-enabled tests.
2017-01-28 11:46:16 -08:00
Markus Lampert
f0db6b824e
Hooked Path tests into global unit test target.
2017-01-28 11:46:16 -08:00
Markus Lampert
7805dce66e
Fixed holding tags unit tests.
2017-01-28 11:46:16 -08:00
Alexander Gryson
9512b463bf
Update Metadata
2017-01-28 09:29:20 +01:00
Alexander Gryson
f254987a87
Update xpm icons
2017-01-28 09:29:19 +01:00
Alexander Gryson
0746a8ed9e
Align Sketcher Workbench icons to guidelines
2017-01-28 09:29:19 +01:00
Zheng, Lei
41c7827287
libarea: fixed linux build
2017-01-28 01:30:13 +08:00
Zheng, Lei
64fc4b5d35
Path: fixed Path.h line ending issue
2017-01-28 01:22:09 +08:00
wwmayer
9b49777700
Merge pull request #475 from abdullahtahiriyo/bspline_stage1b_2017_firstdeliverable
...
Bspline stage1b 2017 firstdeliverable
2017-01-27 18:20:16 +01:00
Zheng, Lei
b9c06fdc2a
Path: fixed FeatureAreaView negative SectionIndex behavior
2017-01-28 01:19:09 +08:00
wwmayer
a460c540f4
Merge pull request #472 from looooo/python3-complete
...
py3: ported Complete to python3
2017-01-27 15:53:10 +01:00
wmayer
f47fc489a6
code cleanup
2017-01-27 15:48:27 +01:00
Jean-Marie Verdun
f10a436787
STEP reader improvements
...
Create Global STEP Tree when assemblies are present
Make TBB usage dependant of its activation status at CMake Level
Fix hierarchy opening into STEP Assembly
2017-01-27 15:23:49 +01:00
Zheng, Lei
a3f46a40e9
Path: added Path.fromShapes and Path.sortWires
...
* Path.fromShapes can now convert any number of shapes to Path with
optimzied travel distances. It internally uses Path.sortWires to
minimize travel distances, and also sort wires by its Z height in case
of sectioned wires.
* The above python function is impelmented in Path::Area class.
* Path::FeatureShape is rewrote to take advantage of these two
functions.
* Add Path::FeatureAreaView to partially display a Path::FeatureArea's
sections.
2017-01-27 17:13:16 +08:00
Markus Lampert
dd63fe9210
Changed comparison of adjecent edge points to use PathGeom.pointsCoincide to deal with the higher precision of doubles underneath.
2017-01-26 23:07:32 -02:00
Abdullah Tahiri
80e7ece429
Sketcher: BSpline - avoid tiny circles on removal of equality
2017-01-26 23:41:02 +01:00
Abdullah Tahiri
6ad51826d4
Sketcher: BSpline Creation - as single command for one-step undo
2017-01-26 21:31:03 +01:00
Abdullah Tahiri
bad73abe84
Sketcher: BSpline Creation fix - Remove introduced pole if creation cancelled
2017-01-26 21:31:03 +01:00
Abdullah Tahiri
cc31dac143
Sketcher: BSpline Creation improvement - Add constraints by groups
2017-01-26 21:31:03 +01:00
Abdullah Tahiri
ec8c514547
Sketcher: BSpline Creation acceleration - pole constraining on pole creation
2017-01-26 21:31:02 +01:00
Abdullah Tahiri
38fc7071c7
Sketcher: BSpline Creation solver call reduction
2017-01-26 21:31:02 +01:00
Abdullah Tahiri
bdc81aae2e
Sketcher: BSpline Creation - pole circle on click
...
=================================================
This method creates the pole circles on every click. This allows to properly detect the closing of the curve
2017-01-26 21:31:02 +01:00
Abdullah Tahiri
f4a882093b
Sketcher: InternalAligment Python extension to InternalAlignmentIndex
...
=====================================================================
Extension of Constraint Python code to consider the case with 4 ints, where the last int is InternalAligmentIndex for InternalAligment constraint
2017-01-26 21:31:02 +01:00