Lukas Matena
13ff92335b
Several fixes and improvements in SendSystemInfoDialog:
...
- do not show memory in MB, show it in GiB rounded to one decimal place
- when sending fails, the HTTP error code is not presented to the user (it is logged though)
- when the user cancels the sending, no extra "sending cancelled" message is shown
- in case there is no internet connection, the dialog is not shown at all
- a 6 second timeout for a case that connection is lost during sending
- the dialog is only shown when the wizard does not show on startup
2021-10-18 15:34:51 +02:00
Lukas Matena
8d115def76
SendSystemInfo: Trim leading/trailing whitespace from all the values
2021-10-18 15:34:51 +02:00
Lukas Matena
ea25461a95
An attempt to fix the SendSystemInfo dialog on GTK3
2021-10-18 15:34:51 +02:00
Lukas Matena
3f9cefc168
SendSystemInfo: Open the dialog based on appconfig, even in alphas
2021-10-18 15:34:51 +02:00
Lukas Matena
f72a5cf1e7
SendSystemInfo: Only get the scaling on Win, not on mac or Linux
2021-10-18 15:34:51 +02:00
Lukas Matena
56c3ea0261
SendSystemInfo: Use /proc/info instead on lscpu on Linux,
...
center dialog after resizing
2021-10-18 15:34:51 +02:00
David Kocik
5946989c21
Stop giving notifications focus on hover.
2021-10-18 15:02:13 +02:00
Vojtech Bubnik
32ebfa66e9
Fix of M106 on every new layer #7094
...
after parallelization of CoolingBuffer:
Remember the last fan speed emitted at the previous layer.
2021-10-18 14:56:02 +02:00
Vojtech Bubnik
556e0c53c7
Some more refactoring of ClipperLib / closing() / opening()
2021-10-18 14:51:30 +02:00
tamasmeszaros
f494ad565b
Fix some builds that fail with cgal 5.2.3
2021-10-18 14:38:55 +02:00
Lukáš Hejl
4d47e9a184
Allow travels processed by the avoid crossing perimeters move further away from the outer perimeter.
2021-10-18 12:51:20 +02:00
Lukáš Hejl
0c2d9f01a6
Fixed z-fighting between contour around the area selected by smart fill and painted triangles inside the FDM support painting gizmo.
2021-10-18 11:35:13 +02:00
Lukáš Hejl
b45675b4e1
Follow-up of 6194e67e68
- Separated the part that computed triangles normals and lighting inside the fragment shader into a separate shader mm_gouraud, which is only used for the multi-material painting gizmo.
2021-10-18 11:35:13 +02:00
Lukáš Hejl
912f73d79c
Fixed the positioning of the supports painting gizmo.
2021-10-18 11:33:47 +02:00
Lukáš Hejl
6f3baf9262
Added tooltips to the support painting gizmo. Used multi-line text for the label "Highlight overhang by angle".
2021-10-18 10:57:57 +02:00
Lukáš Hejl
b2fc50c9d9
Small refactoring of showing tooltips in gizmos.
2021-10-18 10:56:50 +02:00
Lukáš Hejl
6f6f6de506
Added an option to limit painting to triangles only highlighted by "Highlight by angle" in the support painting gizmo.
2021-10-18 10:54:31 +02:00
Vojtech Bubnik
bec140b4bc
"only_retract_when_crossing_perimeters" disabled by default
...
to reduce stringing for "custom" printers based on "defaults".
2021-10-15 16:35:16 +02:00
tamasmeszaros
5e3da340ae
Fix crash with some models after hole drilling
2021-10-15 15:32:14 +02:00
David Kocik
81cb190e2f
Export ongoing notification with delay 1000ms to prevent quick opening and closing on fast systems
2021-10-15 15:04:44 +02:00
Vojtech Bubnik
1ca24f0bd0
Fixed visualization of G-code in G-code viewer after 07e7e11590
...
Fix of prusa-gcodeviewer changes modification time of the viewed gcode file #7005
2021-10-15 14:31:57 +02:00
Jurriaan Pruis
43d952779a
Fix missing wx/timer.h
header compile issue
...
Tried to compile the latest git version on my system and got an error that wxTimer could not be found. Fixed it by adding in the header.
cc @kocikdav
2021-10-15 10:44:19 +02:00
Vojtech Bubnik
a6f4b9b71f
Snug supports: Extrude interface layers 45 degrees from the base layer,
...
flip direction of the infill layer with each interface layer.
Unfortunately the flipping of support interface directions may not work
reliably due to base support layer heights growing at different rate
from the interface layers.
2021-10-14 13:56:04 +02:00
David Kocik
ffc29a2536
Preferences Highlighter
2021-10-14 14:29:53 +02:00
YuSanka
aecd7e2b93
GalleryDialog: Added context menu for custom shapes
...
+ Added possibility to delete custom shaped by "DELETE" key
2021-10-14 12:16:14 +02:00
enricoturri1966
7be17d89e6
Fixed conflicts after merge with master
2021-10-14 10:48:46 +02:00
Lukáš Hejl
2f9ce6bedb
Fixed incorrect color assignment in multi-material segmentation caused by intersecting edges due to post-processing of Voronoi diagram.
...
This issue was occurring mainly on the cylinder objects.
2021-10-14 09:39:23 +02:00
Vojtech Bubnik
64a3866ad5
Making GCC happy.
2021-10-14 09:33:39 +02:00
Vojtech Bubnik
0222533273
Fixed compilation on non MS systems
2021-10-14 09:31:53 +02:00
Vojtech Bubnik
7ff76d0768
New ClipperUtils functions: opening(), closing() as an alternative
...
for offset2() with clear meaning.
New ClipperUtils functions: expand(), shrink() as an alternative
for offset() with clear meaning.
All offset values for the new functions are positive.
Various offsetting ClipperUtils (offset, offset2, offset2_ex) working
over Polygons were marked as unsafe, sometimes producing invalid output
if called for more than one polygon. These functions were reworked
to offset polygons one by one. The new functions working over Polygons
shall work the same way as the old safe ones working over ExPolygons,
but working with Polygons shall be computationally more efficient.
Improvements in FDM support generator:
1) For both grid and snug supports: Don't filter out supports for which
the contacts are completely reduced by support / object XY separation.
2) Rounding / merging of supports using the closing radius parameter is
now smoother, it does not produce sharp corners.
3) Snug supports: When calculating support interfaces, expand the projected
support contact areas to produce wider, printable and more stable interfaces.
4) Don't reduce support interfaces for snug supports for steep overhangs,
that would normally not need them. Snug supports often produce very
narrow support interface regions and turning them off makes the support
interfaces disappear.
2021-10-14 09:11:31 +02:00
David Kocik
1308b255fe
missing include and template type
2021-10-13 17:04:40 +02:00
David Kocik
ac6259e387
Preferences: notify_relese option with Choice type Field.
...
OptionsGroup:: Added possibility of the right alignment of the controls
+ Added separator line to Preferences
2021-10-13 15:39:06 +02:00
enricoturri1966
405a7e84d6
Fix in seams detection (restore detection after wiping)
2021-10-13 11:13:31 +02:00
YuSanka
a4ad4ff4a9
Auto color change: check overhangs lust from Preview when detecting auto color changes
...
+ fixed typo in equivalent_areas()
+ Added missed include
2021-10-12 15:23:50 +02:00
YuSanka
5990f05418
Follow-up cedfc5e3fb
- Next code refactoring to avoid inconsistency between AutoColorChangeDetection in Preview and DoubleSlider
2021-10-12 14:18:39 +02:00
enricoturri1966
8befc43739
Seams detection now takes in account for overhang perimeters
2021-10-12 12:03:34 +02:00
enricoturri1966
19572068a5
Revert of e28ebf9386
2021-10-12 11:49:51 +02:00
tamasmeszaros
ac414e226f
Minor beautification
2021-10-12 10:55:23 +02:00
YuSanka
cedfc5e3fb
DoubleSlider: Code refactoring for auto color change
2021-10-12 10:47:21 +02:00
tamasmeszaros
94843bb6bf
Removing search for upstream miniz as its no longer compatible.
...
Due to 729298c408
fixes #7080
2021-10-12 09:59:59 +02:00
enricoturri1966
e28ebf9386
Removed threshold to detect seams to be shown in preview
2021-10-12 09:53:23 +02:00
YuSanka
b39eb7f222
Gallery: Fixed a naming of the added item with already existing name.
...
+ Fixed layout after add/delete item to/from Gallery
2021-10-11 11:21:27 +02:00
David Kocik
c4f78fcdc9
Check version string for alpha and beta release versions.
...
Preferences setting to show / not show alpha beta releases.
2021-10-11 10:01:48 +02:00
YuSanka
e1104d5f7d
Win11 specific: Added workaround for implicit set of the dark mode
2021-10-11 09:54:38 +02:00
YuSanka
c921d6f936
ObjectList: Fixed positioning of the object's part/modifiers when it's added
...
Use load_modifier() for everything without a respect to the type
2021-10-08 12:14:49 +02:00
enricoturri1966
b9ac80ccd4
#7076 - Modifiers and similar objects always rendered as transparent
2021-10-08 10:48:46 +02:00
Vojtech Bubnik
7b0d90f489
Reworded "Shape Gallery" menu and dialog title
2021-10-07 15:40:28 +02:00
Vojtech Bubnik
5de143f04f
Follow-up to 96b88f5b29
...
Fixed crash with zero support base spacing.
The bug fix was not correct and it disabled the new "zig-zag" sparse
infill generator, leading to GH issue #7014
Somehow improved missing interface layers for snug supports
by propagating full overhangs when generating interface layers.
Fixed generation of soluble interfaces for support enforcers,
where base support was used for steeper overhangs.
Disabled filtering out thin regions from the lower layer, that will
not be covered by perimeters, thus they are not supporting the current layer.
However this may lead to a situation where regions at the current layer
that are narrow thus not extrudable will generate unnecessary supports.
For example, see GH issue #3094
2021-10-07 15:39:44 +02:00
enricoturri1966
29340c1560
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_sinking_objects_collision
2021-10-07 14:22:06 +02:00
YuSanka
c0f3077ce9
Follow-up fb3ed367ad
: Fixed flickering of the wxProgressDialog during the model fixing
2021-10-07 14:04:15 +02:00
Lukáš Hejl
b99be85187
Fixed a warning.
2021-10-07 13:36:06 +02:00
Lukáš Hejl
82bf9c158a
Optimized multi-material segmentation to construct Voronoi diagrams only for layers that have more than one color. If the whole layer is painted using the same color, it is not needed to construct a Voronoi diagram.
2021-10-07 13:16:21 +02:00
Lukáš Hejl
d6d575f607
Renamed the brush "Pointer" to "Triangles" in the multi-material painting gizmo, and in the FDM supports painting gizmo.
2021-10-07 13:12:36 +02:00
Lukáš Hejl
ebdc69bdc9
Fixed the positioning of the painting gizmos.
2021-10-07 13:12:36 +02:00
Lukáš Hejl
542ba1bb9a
Added rendering of smart fill and contour around selected areas for the FDM supports painting gizmo.
2021-10-07 13:12:36 +02:00
Lukáš Hejl
2b59a16dc7
Refactored rendering of the contour around areas selected by smart fill to prepare it for the FDM supports painting gizmo.
2021-10-07 13:12:36 +02:00
Lukáš Hejl
8c9c8a9cc4
Prepared the FDM support gizmo for smart fill.
2021-10-07 13:12:36 +02:00
Lukáš Hejl
99edfd22ce
Improved the alignment of tool type and brush type in the multi-material gizmo.
2021-10-07 13:12:36 +02:00
Lukáš Hejl
dfb4ccdb13
Reworked seam painting gizmo to the same layout as multi-material painting gizmo.
2021-10-07 13:12:36 +02:00
Lukáš Hejl
925d3fad1f
Fixed the wrong calculation of caption text size in all painting gizmos, which could lead to showing unintended space after ImGui::SliderFloat.
2021-10-07 13:12:36 +02:00
Lukáš Hejl
6012bf1e03
Removed unintended space after ImGui::SliderFloat in all painting gizmos.
2021-10-07 13:12:36 +02:00
Lukáš Hejl
992a279bef
Removed the vertical space in the below information about how to use gizmo for all painting gizmos.
2021-10-07 13:12:36 +02:00
YuSanka
fb3ed367ad
Try to fix a focus for Application after closing of the "fix thought NetFab" ProgressBarDialog
2021-10-07 11:53:19 +02:00
YuSanka
a2b99db0df
MSW specific:Added dark mode for G-CodeViewer
2021-10-07 11:53:19 +02:00
YuSanka
68fd37b300
Added SVG-file for G-CodeViewer logo
2021-10-07 11:53:19 +02:00
enricoturri1966
34f5dde024
#6380 - Fixed non-uniform scaling of a volume using the sidebar fields
2021-10-07 10:37:49 +02:00
YuSanka
c15be26bff
Check if object's size appears to be zero, when loading the model file.
2021-10-07 09:12:31 +02:00
YuSanka
7340488aaf
ObjectList: Fixes
...
* Fixed update of a warning icon for multi-part object, when some part with errors was deleted
* Fixed a crash when selecting non-Object and non-Volume item (in get_mesh_errors_info() was missed check of the obj_idx)
+ Follow-up 1cc7b4ba97
- some code refactoring:
* fixed RepairedMeshErrors.merge()
* get_mesh_errors_count() renamed to get_repaired_errors_count()
2021-10-06 17:24:40 +02:00
enricoturri1966
dbad87fb42
Follow-up of 2afdc66dfb
- Added missing use case
2021-10-06 15:46:01 +02:00
enricoturri1966
2afdc66dfb
#7068 - Automatic update of legend when switching on/off travel visibility in preview
2021-10-06 15:29:39 +02:00
enricoturri1966
fe4baa33f6
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_sinking_objects_collision
2021-10-06 13:48:27 +02:00
enricoturri1966
4ff13a5d63
Tech ENABLE_OUT_OF_BED_DETECTION_IMPROVEMENTS - Reworked detection of collision with printbed. The detection uses now different algorithms in dependence of the printbed type (rectangular, circular, convex) to improve performance.
2021-10-06 13:47:54 +02:00
YuSanka
82de61b0aa
RichToolTips: Don't set a Timer for Tooltip but dismiss the tooltip when a mouse leave the button
2021-10-06 13:15:21 +02:00
David Kocik
d5d106fe61
Netfabb finished notification, fix of #7067
2021-10-06 13:07:38 +02:00
YuSanka
1cc7b4ba97
Save/Load repaired errors from/to a mesh statistics to/from a 3MF
2021-10-06 10:57:28 +02:00
YuSanka
47b54d5ce0
ObjectList: Fixed mouse click on the WarningIcon, when mesh wasn't repaired and isn't manifold.
2021-10-06 10:12:21 +02:00
YuSanka
9e2fa3cd4d
Follow-up e2f2ed4172
and 80844ca337
- Allow RichToolTips just under MSW
2021-10-05 16:45:54 +02:00
YuSanka
091f946340
Localization: Updated POT
2021-10-05 16:31:04 +02:00
David Kocik
a1b2d53f4e
actualize warnings on empty background process
2021-10-05 15:52:44 +02:00
Lukas Matena
8401ba192b
Show PrusaSlicer logo in the SendSystemInfoDialog
2021-10-05 15:36:00 +02:00
enricoturri1966
982172b878
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_sinking_objects_collision
2021-10-05 15:33:37 +02:00
Lukas Matena
deec0330bb
Disable the dialog before merge with master
2021-10-05 15:09:53 +02:00
Lukas Matena
d7d056c8ba
This reverts commits a186017 and 2423e7f
2021-10-05 15:09:53 +02:00
Lukas Matena
5dd9e98f27
SendSystemInfo: Return number of logical cores on Apple
2021-10-05 15:09:53 +02:00
Lukas Matena
5b5c72e73e
REVERT LATER: More debugging logging
2021-10-05 15:09:53 +02:00
Lukas Matena
e8412d654c
Use /etc/machine-id as unique id on Linux
2021-10-05 15:09:53 +02:00
Lukas Matena
1bef2eacc5
Use hardware UUID as unique id on Apple
2021-10-05 15:09:53 +02:00
Lukas Matena
c0eb4fbbd9
Use MAC address as a base of unique system ID on Windows
2021-10-05 15:09:53 +02:00
Lukas Matena
4733e17266
SendSystemInfoDialog: Collect CPU info on Windows
2021-10-05 15:09:53 +02:00
Lukas Matena
a49c691241
SendSystemInfoDialog now opens through CallAfter, GL extensions are sorted
2021-10-05 15:09:53 +02:00
Lukas Matena
bdc4c4cf30
Added some more info (wxWidgets, gtk, Linux distro, CPU info, monitors)
2021-10-05 15:09:52 +02:00
Lukas Matena
af5abc8079
REVERT LATER: Something for debugging
2021-10-05 15:09:52 +02:00
Lukas Matena
b87f512b9e
SendSystemInfo: do not close the dialog when failed/cancelled, set content-type to json
2021-10-05 15:09:52 +02:00
Lukas Matena
6a819dad89
SendSystemInfoDialog: Actual sending of the info
2021-10-05 15:09:52 +02:00
Lukas Matena
e8af0d6d0f
SendSystemInfoDialog: Use HTML for formatting
2021-10-05 15:09:52 +02:00
YuSanka
d6222cf8a8
SendSystemInfoDialog: Layout adjustments
2021-10-05 15:09:52 +02:00
Lukas Matena
faa808b385
First draft of SendSystemInfoDialog
2021-10-05 15:09:52 +02:00
enricoturri1966
37219fe4f3
Fixed crash when turning on shells visibility in preview and the application was started with background processing active
2021-10-05 14:49:18 +02:00
YuSanka
80844ca337
RichTooltips for the buttons on a sidebar: Fixed wrong positioning of the tooltip when PrusaSlicer is on secondary display
...
Show a right triangle tip in the bottom right corner of the tooltip.
2021-10-05 13:36:32 +02:00
tamasmeszaros
29a5f48f43
Minor performance optimization for convex intersection algo
2021-10-05 13:31:09 +02:00
YuSanka
3e07d2e853
Changed conditions for the warning icon.
...
If mesh isn't manifold then always show the red "exclamation" icon
It mesh is manifold but was repaired then show the gray/white "exclamation" icon
2021-10-05 13:21:38 +02:00
David Kocik
23cff74efb
Hint notification: selected filament tag check.
2021-10-05 12:26:45 +02:00
enricoturri1966
9a24b08e28
Fixed toolpaths colors when loading a 3mf containing color changes and background process is active
2021-10-05 11:15:03 +02:00
YuSanka
e2f2ed4172
Fix for #6218 - Button tooltip in the way
...
Use wxRichTooltip instead of wxTooltip for buttons on the bottom of a sidebar
2021-10-05 11:05:20 +02:00
enricoturri1966
ddcbbee3b0
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_sinking_objects_collision
2021-10-05 09:51:04 +02:00
Vojtech Bubnik
e185bf58b7
Replaced "Simple shorthands for smart pointers" shptr, uqptr, wkptr
...
with their original names. Using weird shorthands makes the code
unreadable for anyone but the original author.
template<class T> using shptr = std::shared_ptr<T>;
template<class T> using uqptr = std::unique_ptr<T>;
template<class T> using wkptr = std::weak_ptr<T>;
2021-10-04 16:56:26 +02:00
Vojtech Bubnik
b028e169c8
Merge branch 'master' of https://github.com/Prusa3D/PrusaSlicer
2021-10-04 16:33:33 +02:00
Vojtech Bubnik
6192c57368
Fix of support missing under horizontal overhang #6058
...
There was a bug for more than 4 years, which likely triggers now more
often with the introduction of raft_contact_distance parameter,
which is usually significantly smaller than support_material_contact_distance.
There were no support towers built at the raft for contact layers
below the print_z of the first object layer.
2021-10-04 16:33:25 +02:00
YuSanka
577632d892
Check unsaved preset changes only if project is dirty and it wasn't saved
2021-10-04 16:20:46 +02:00
YuSanka
d214e09400
Fix for #7040 - Missing auto slice after Undo / Redo of deletion of height range modifier
2021-10-04 15:33:32 +02:00
enricoturri1966
a9ca63d344
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_sinking_objects_collision
2021-10-04 15:04:34 +02:00
tamasmeszaros
4cc1b2740d
Don't report intersection if two polygons are only touching.
2021-10-04 14:16:13 +02:00
YuSanka
8c89abc9fb
Fixed inconsistent modifier context menu in the right panel and in the 3d scene
2021-10-04 14:13:42 +02:00
enricoturri1966
8226150707
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_sinking_objects_collision
2021-10-04 14:08:26 +02:00
enricoturri1966
4521945bb3
Tech ENABLE_OUT_OF_BED_DETECTION_IMPROVEMENTS - Faster printbed collision detection using the new function Geometry::intersect()
2021-10-04 14:07:45 +02:00
YuSanka
a5a6c0e09a
Fix for #7012 - Dark mode + colored axis: Can't read the Manipulation panel
2021-10-04 13:57:20 +02:00
enricoturri1966
5739178306
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_sinking_objects_collision
2021-10-04 13:07:53 +02:00
Filip Sykala
39a98e97b4
Fix. Allow simplify volume inside object, fix drawing wireframe
2021-10-04 12:29:45 +02:00
YuSanka
580f157d28
ConfigWizard: Suppress to select SLA printer if a multi-parts object is on a Plater
2021-10-04 11:35:41 +02:00
enricoturri1966
4103086a6e
#7056 - Gizmo cut input set to use current locale
2021-10-04 11:12:29 +02:00
Vojtech Bubnik
e533d237f9
Manifold mesh may contain self-intersections, so we want to always allow fixing the mesh.
...
This is a fix of a regression wrt. https://github.com/prusa3d/PrusaSlicer/releases/tag/version_2.4.0-alpha2
2021-10-04 10:39:58 +02:00
tamasmeszaros
9c177cf167
Merge branch 'tm_convex_intersect_rotcalip'
2021-10-04 10:12:04 +02:00
David Kocik
9f0b31dc55
Close validate warnings on empty plater.
2021-10-04 09:56:23 +02:00
Filip Sykala
56996104cc
fix assert
2021-10-04 09:30:30 +02:00
Filip Sykala
f97d6a442b
Merge branch 'master' into Fix_wireframe_trafo
2021-10-04 09:23:13 +02:00
Filip Sykala
91462cf9d5
Fix wireframe transformation when supports in SLA are added
2021-10-04 09:23:06 +02:00
enricoturri1966
b78d7cea28
#7054 - Tech ENABLE_SAVE_COMMANDS_ALWAYS_ENABLED: enable command Save (CTRL+S) for untitled projects (automatically calls command Save As)
2021-10-04 09:20:35 +02:00
enricoturri1966
0b78e009b4
#7050 - GCodeProcessor: Fixed processing of gcode lines M109
2021-10-04 09:02:03 +02:00
enricoturri1966
2e779d8594
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_sinking_objects_collision
2021-10-04 08:30:13 +02:00
enricoturri1966
45db1c13ba
Tech ENABLE_OUT_OF_BED_DETECTION_IMPROVEMENTS - Faster update of object manipulation fields while dragging gizmo Move/Rotate/Scale
2021-10-04 08:30:04 +02:00
tamasmeszaros
9fce0ce3a6
Fix compile issues and overlapping polygon fails
2021-10-01 18:27:37 +02:00
Filip Sykala
f5faad80a9
add close suggestion notification
2021-10-01 17:40:30 +02:00
David Kocik
1de422e932
refactor mr. clippy rendering
2021-10-01 16:49:58 +02:00
Lukas Matena
4ca2401b69
Several minor improvements and fixed warnings
2021-10-01 14:31:22 +02:00
David Kocik
1edbdcfecf
remove simplify suggestion function
2021-10-01 15:45:58 +02:00
Vojtech Bubnik
c7d6a95cb3
Slightly reworded error messages for
...
Cannot import .sl1 files into PrusaSlicer
2021-10-01 15:07:09 +02:00
David Kocik
29aab3a426
PrintInfoNotificationLevel with icon
2021-10-01 15:03:40 +02:00
Vojtech Bubnik
68de2a49a3
Fixed update of mesh volume after applying a transformation.
...
Fixes flipped normals when importing some 3MFs.
2021-10-01 14:28:45 +02:00
enricoturri1966
aaf47884cd
Revert of 117df134f6
2021-10-01 14:14:47 +02:00
Vojtech Bubnik
afbbb36fa4
Fixed import of multi-material AMF files, broken due to admesh eradication.
2021-10-01 13:34:22 +02:00
enricoturri1966
f84838028b
Tech ENABLE_FIX_SINKING_OBJECT_OUT_OF_BED_DETECTION merged into tech ENABLE_OUT_OF_BED_DETECTION_IMPROVEMENTS
2021-10-01 13:13:26 +02:00
enricoturri1966
efb08cf55a
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_sinking_objects_collision
2021-10-01 12:15:24 +02:00
enricoturri1966
6ff4d6c3f5
Tech ENABLE_OUT_OF_BED_DETECTION_IMPROVEMENTS - Fixed detection of collision with circular printbed for pre-gcode preview and sla preview
2021-10-01 12:15:14 +02:00
David Kocik
b1c1055963
Close updated item info notification at new item loading
2021-10-01 10:08:19 +02:00
David Kocik
5a45c94ccd
Remove duplicit warning about not enabled support enforcers
2021-10-01 10:08:19 +02:00
David Kocik
117c4a432e
Object info notification level
2021-10-01 10:08:19 +02:00
David Kocik
213add1b2b
Revert Object warning notification to SimplifySuggestion
...
followup of commit 0d0c092880
.
2021-10-01 10:08:19 +02:00
enricoturri1966
f3bd5e96c5
Tech ENABLE_OUT_OF_BED_DETECTION_IMPROVEMENTS - Fixed detection of collision with circular printbed in backend
2021-10-01 07:28:10 +02:00
Lukas Matena
476b48ed11
Revert "Merge branch 'tm_convex_intersect_rotcalip'"
...
This reverts commit 627d8bcaef
, reversing
changes made to 66d4462724
.
The change breaks build on mac
2021-09-30 16:49:00 +02:00
tamasmeszaros
234f062ad4
Fast convex polygon intersection test with rotating calipers
2021-09-30 15:49:12 +02:00
enricoturri1966
1f82eb5624
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_sinking_objects_collision
2021-09-30 15:08:35 +02:00
enricoturri1966
13ef817a99
Tech ENABLE_OUT_OF_BED_DETECTION_IMPROVEMENTS - Enable detection of collision with circular printbed in backend
2021-09-30 14:51:09 +02:00
Vojtech Bubnik
66d4462724
Fixed spelling error preffered / preferred
2021-09-30 14:44:11 +02:00
David Kocik
5045e07f78
Find name of preset from alias before selecting preferred preset.
2021-09-30 14:42:30 +02:00
enricoturri1966
430c7a69b3
Tech ENABLE_OUT_OF_BED_DETECTION_IMPROVEMENTS - Completed detection of collision with circular printbed for toolpaths and sla auxyliary volumes
2021-09-30 13:16:05 +02:00
Lukas Matena
c61a5d234e
After gizmo snapshots are compacted, rename the last one to something generic
2021-09-30 12:17:52 +02:00
Vojtech Bubnik
aeb18e729d
New preferences key "clear_undo_redo_stack_on_new_project", set to "1"
...
by default: Clear Undo / Redo stack on new project or load project.
Fixes Clear undo chain #2812
2021-09-30 12:17:52 +02:00
Vojtech Bubnik
1f3b272d77
Redo of the project state, implementation of Undo/Redo stack compression
2021-09-30 12:17:39 +02:00
Vojtech Bubnik
96f4d71c71
Fixed 1st layer support expansion if printed without raft.
...
This is a regression to PrusaSlicer 2.3.3
2021-09-30 14:01:31 +02:00
Filip Sykala
da251fbd1c
Add checkbox for show wire frame
2021-09-30 13:56:04 +02:00
Filip Sykala
07a97f41d3
Fix: ../src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp:411:21: warning: comparison of integer expressions of different signedness: 'std::vector<Slic3r::ModelObject*>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
2021-09-30 13:15:21 +02:00
Filip Sykala
a2d2dec107
Merge branch 'master' into fs_simplify_wireframe
2021-09-30 13:03:32 +02:00
Filip Sykala
e3459c7c46
Add Rendering wire frame when simplify
2021-09-30 13:03:15 +02:00
Vojtech Bubnik
b76f66d2d2
Follow-up to 3ee259b602
...
1) Added parsing of 3MF PrusaSlicer generator semantic version
2) For 3MFs generated by >= "2.4.0-alpha1" and < "2.4.0-alpha3",
remove unreferenced vertices on loading. This should shrink the incorrectly
generated 3MFs back.
3) Added check for an empty mesh, which could have crashed PrusaSlicer on 3MF parsing.
2021-09-30 12:18:43 +02:00
Lukas Matena
5fe90599fc
Painting gizmos no longer use a separate undo/redo stack
2021-09-30 12:18:43 +02:00
enricoturri1966
7cfe082621
Tech ENABLE_OUT_OF_BED_DETECTION_IMPROVEMENTS - Enable detection of collision with circular printbed for toolpaths
2021-09-30 12:08:05 +02:00
enricoturri1966
448911df9f
Tech ENABLE_OUT_OF_BED_DETECTION_IMPROVEMENTS - Removed unused code
2021-09-30 10:55:41 +02:00
enricoturri1966
4eb21d4787
Tech ENABLE_FIX_SINKING_OBJECT_OUT_OF_BED_DETECTION - Enable detection of collision with circular printbed also for SLA printers
2021-09-30 10:35:53 +02:00
enricoturri1966
b19c742455
Fixed conflicts after merge with master
2021-09-30 10:31:25 +02:00
enricoturri1966
e24bd2d2d4
Tech ENABLE_FIX_SINKING_OBJECT_OUT_OF_BED_DETECTION - Removed duplicated code
2021-09-30 10:23:38 +02:00
Filip Sykala
6b08cc4d22
Merge branch 'master' into fs_simplify_wireframe
2021-09-30 09:52:10 +02:00
Filip Sykala
f7a479a90e
Merge branch 'master' into fs_fix_simplify
2021-09-30 09:40:22 +02:00
Filip Sykala
6b9ee1126d
Not buildable render contour
2021-09-30 09:40:06 +02:00
Filip Sykala
6bd78aa9c4
Add call for render
2021-09-30 09:23:04 +02:00
enricoturri1966
47d3d068dd
Fixed warnings
2021-09-30 09:00:01 +02:00
Filip Sykala
84f8ba9fb4
Fix for deleted object after preview
2021-09-29 19:06:31 +02:00
Filip Sykala
95fc054590
fix for getting name of gizmo without key(like simplify)
2021-09-29 18:17:19 +02:00
enricoturri1966
88c701888d
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer
2021-09-29 13:34:45 +02:00
enricoturri1966
1df91ea930
Follow-up of 67e519d3ab
- Use a platform-indipendent fix
2021-09-29 13:34:30 +02:00
tamasmeszaros
5c1e6d2298
Fix reading relative_correction parameter
...
Drop compatibility with profiles created on legacy Slic3r PE 1.42-beta1 to 1.42-beta2
fixes #7013
2021-09-29 10:11:29 +02:00
David Kocik
4e63f873da
Slicing complete notification fades out after 2 seconds. Issue #7017 .
2021-09-29 10:01:13 +02:00
enricoturri1966
c917b82bea
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer
2021-09-27 16:03:22 +02:00
enricoturri1966
80f28538c5
#7011 - Follow-up of 3ee259b602
- Modified volumes' indices rebase
2021-09-27 16:03:09 +02:00
Vojtech Bubnik
85c760d9b6
Touch-up to some comments, removed commented-out code
2021-09-27 15:00:58 +02:00
Vojtech Bubnik
8f4f02f84c
Merge remote-tracking branch 'remotes/origin/vb_project_state'
2021-09-27 14:36:22 +02:00
Vojtech Bubnik
9c4494637c
WIP Undo / Redo and project state: Marking Undo / Redo snapshots
...
with their purpose.
Follow-up to 41dc265a45
2021-09-27 14:32:09 +02:00
enricoturri1966
3ee259b602
#7010 - Fixed import of volumes from 3mf. This is a regression wrt. PrusaSlicer 2.4.0-alpha1 due to the 3mf import optimization introduced with 8a2a9dba2f
2021-09-27 14:14:05 +02:00
Vojtech Bubnik
41dc265a45
WIP Undo / Redo and project state: Marking Undo / Redo snapshots
...
with their purpose.
2021-09-27 14:10:53 +02:00
enricoturri1966
2483a9f036
Added missing include
2021-09-27 13:02:56 +02:00
enricoturri1966
1196251d51
#7015 - Fixed typo in AMFParserContext::endElement()
2021-09-27 12:33:26 +02:00
enricoturri1966
8ecdea152f
Follow-up of 721e396edc
- Same fix applied to GCodeProcessor::process_G28() and GCodeProcessor::process_M402()
2021-09-27 12:08:26 +02:00
enricoturri1966
721e396edc
#7016 - Fixed GCodeProcessor::process_M132()
2021-09-27 11:35:58 +02:00
enricoturri1966
7ca9024fca
#7008 - GCodeViewer - Fixed loading of gcodes generated by SuperSlicer
2021-09-27 11:22:36 +02:00
Vojtech Bubnik
43470af0c6
Fix of "About" screen still shows 2020 at the copyright notice ( #7018 )
2021-09-27 10:07:29 +02:00
Vojtech Bubnik
07e7e11590
Fix of prusa-gcodeviewer changes modification time of the viewed gcode file #7005
...
This is a regression wrt. PrusaSlicer 2.4.0-alpha1 due to the G-code
processing optimization and parallelization.
Related to GCode Viewer changes files modified date in windows #5079
2021-09-27 10:02:54 +02:00
tamasmeszaros
4d2bf8db0d
Switch to current SLA profile if an imported archive doesn't contain it.
...
Send a warning notification if this happens. Also,if there is no current SLA profile initialized, an error message will tell the user to switch to an SLA profile before importing.
fixes #6915
2021-09-27 10:00:21 +02:00
tamasmeszaros
33eba4aea6
Rename SLAPrinter interface to SLAArchive as it makes more sense.
2021-09-27 10:00:21 +02:00
enricoturri1966
117df134f6
#7010 - Fixed import from 3mf containing modifiers crossing the printbed
2021-09-27 09:45:54 +02:00
Lukas Matena
6a5feb818f
Revert "Fixed volume transformations in SLA:":
...
The fix is not complete, it is better not to break it more than it was.
This reverts commit 6b25a9c836
.
2021-09-24 13:03:56 +02:00
Lukas Matena
6b25a9c836
Fixed volume transformations in SLA:
...
Volume transformations were ignored in SLA mode. This did not matter for plain STLs
and PS own 3MF, because in those cases, the volume trafo was identity. Importing
a 3rd party 3MF leads to issues with support/holes placement and generation.
Fixes #6100 and #6744 .
2021-09-24 12:14:44 +02:00
Vojtech Bubnik
fec5d92bc8
Added various has_duplicate_points() checks, to be used by asserts.
...
Removed some "extern" function modifiers, they have no meaning in C++.
2021-09-24 14:07:46 +02:00
YuSanka
7eea15fdde
Set the project state to 'dirty' only if a project has a name (was saved or loaded).
...
Do not mark the project as dirty if it is a new project which hasn't been saved yet.
2021-09-24 13:01:29 +02:00
Vojtech Bubnik
6c37955d75
Moved a commented out test for DynamicPrintConfig serialization
...
/ deserialization into a living unit test.
2021-09-24 11:32:15 +02:00
YuSanka
60d8a7b301
MSW specific: Follow up 683cb42454
- Set Selection for the content of focused controls (TextCtrls a SpinCtrls)
2021-09-24 10:55:34 +02:00
tamasmeszaros
acd2448f10
Fix stl export on Linux
2021-09-24 10:15:46 +02:00
Vojtech Bubnik
3872524dc4
Follow-up to b6d7601ead
...
Fixing the FDM raft generator.
2021-09-24 10:13:26 +02:00
Vojtech Bubnik
0c0c37b76c
Fix of [2.4.0a] version placeholder doesn't work for output filename format #7002
2021-09-24 09:36:14 +02:00
Vojtech Bubnik
04e4aee246
Merge branch 'master' of https://github.com/Prusa3D/PrusaSlicer
2021-09-23 18:46:15 +02:00
Vojtech Bubnik
b6d7601ead
Fixed endless loop in support raft generator.
2021-09-23 18:46:11 +02:00
YuSanka
8f6386cdff
Fix of #7000 - Compilation error: ambiguous overload for ‘operator+
2021-09-23 16:54:40 +02:00
YuSanka
9f62aeabab
DoubleSlider: Fixed a bug related to the unexpected mouse capture end
...
Steps to repro:
1.Use left mouse button to move thumb of the DoubleSlider
2.Click by right mouse button
3.Thumb is moving even if you move the mouse out of the DoubleSlider
2021-09-23 16:54:40 +02:00
David Kocik
976ef2c1b9
Progress bar notifications and Export finished notification changes.
...
Export Finished notification ejecting state.
Slicing began state in progress notification.
Timing of progress bar notifications. Progress indicator disappears instantly at 100%. While slicing goes into Slicing Finished without fade out.
Preventing of negative growth of slicing progress bar.
Slicing progress bar - Negative percent value means now No info rather than Canceled.
Hiding slicing progress at printer technology change.
2021-09-23 16:15:39 +02:00
YuSanka
cd4c29b1e5
MSW specific: Fix for #6938 - Cycling through tabs using Ctrl+PageUp/Down doesn't work
...
OnNavigationKey() function is copied from wxNotebook to Notebook
2021-09-23 16:02:44 +02:00
YuSanka
853a5846ec
Fix for #6993 - Small hieght combobox in "Settings tab as menu items"
2021-09-23 15:39:54 +02:00
David Kocik
6ca474192f
Fix of hidden progress bar in progress indicator notification
2021-09-23 15:01:19 +02:00
YuSanka
683cb42454
Fix for #6941 - Search Settings: Put focus into input field when navigating to the setting
2021-09-23 12:32:59 +02:00
enricoturri1966
d7216b5d68
Follow-up of f71cf324b9
- Fixed shown tool position
2021-09-23 11:51:30 +02:00
David Kocik
1f82714159
Blacklisted AMHook.dll
2021-09-23 11:15:08 +02:00
David Kocik
b382ac8541
Fixed rendering undo/redo toolbar arrow.
2021-09-23 09:56:28 +02:00
enricoturri1966
bc4650d174
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer
2021-09-23 09:25:31 +02:00
enricoturri1966
f71cf324b9
Tech ENABLE_FIX_SEAMS_SYNCH - Fix the synchronization of seams with the horizontal slider in preview
2021-09-23 09:25:13 +02:00
Lukas Matena
284721e0de
Fix of #4666 (selection rectangle in SLA gizmo incorrectly handles transformations)
2021-09-22 21:31:33 +02:00
YuSanka
e48c320f6d
Fix for #6958 - GUI Setting non modal window: Search broken when main window hidden (minimized)
2021-09-22 15:53:59 +02:00
YuSanka
e477903d3e
MSW specific: Fixed settings layout after switching from New to Old layout
...
(Notebook: Added check of a visibility of just selected tab in notebook)
2021-09-22 15:53:59 +02:00
David Kocik
457ded43c3
Instance check: Error output with lock file location
2021-09-22 14:50:28 +02:00
Oleksandra Yushchenko
8f064dd155
Check unsaved changes ( #6991 )
...
* Check Unsaved changes (partially related to #5903 )
+ Allow create new project when Plater is empty, but some of presets are modified (related to #5903 )
+ When creating new project allow Keep or Discard modification from previous project
+ Added check of changes:
* before any load project (including DnD and "Load From Recent Projects")
* before preset updater
* when configuration is changing from the ConfigWizard
+ Dialog caption is added for each check
+ Create/Destroy ConfigWizard every time when it's called
* Check Unsaved changes: Next Improvements
+ For dialog "Save project changes" added a reason of saving and name of the current project (or "Untitled")
+ UnsavedChangesDialog: Headers are extended to better explain the reason
+ Preferences: Fixed tooltiops for "Always ask for unsaved changes when..."
+ Suppress "Remember my choice" checkbox for actions which are not frequently used
* Fixed behavior of the application when try to save changed project but "Cancel" button is selected in "Save file as..." dialog
* Check unsaved changes: Improvements for Config Wizard - Check all cases when presets should be updated
+ Fixed info line for Materials pages. Text of the info relates to the printer technology now
* Improved suggested name for a project when Application is closing
* Fixed Linux/OSX build warnings
2021-09-22 12:44:13 +02:00
YuSanka
846b868215
Follow up ff82c82f
- Fixed ModeButtons refreshing
2021-09-22 12:39:19 +02:00
Lukas Matena
d57d3f99d0
Fix of #3969 (crash if $USER is not set)
2021-09-22 11:58:38 +02:00
enricoturri1966
ef800a8547
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer
2021-09-22 11:38:15 +02:00
enricoturri1966
67e519d3ab
#6983 - Fixed preview when switching to it after automatic background processing is completed
2021-09-22 11:38:08 +02:00
Lukas Matena
a6261ff474
Fix of #6898 (finishing slicing interfered with dragging gizmos)
2021-09-22 11:02:52 +02:00
Vojtech Bubnik
96b88f5b29
Fixed crash with zero support base spacing.
...
Zero support base spacing is newly allowed, switching from
the "support base" infill pattern to rectilinar infill pattern.
Why someone would want to use a solid infill for support base eludes me,
but it is simpler to support it instead of working out some rules on
minimum support base density.
Fixes Support patern spacing set to zero causing crash #6989
2021-09-22 10:50:12 +02:00
Lukáš Hejl
30d13c99b7
Added a missing include (GCC 11.1).
2021-09-21 22:41:55 +02:00
YuSanka
238e65e455
Improvements for statistics information:
...
+ Show 2 groups of errors: "Auto-repared" and "Remaning".
+ Use different icons for volumes with/without remaining errors
+ Fixed update of the ObjectList warnings icons after switch the color mode of a PrusaSlicer
+ Some code refactoring: Use same code for tooltips for "exclamation"-icon from an ObjectList and from a Sidebar->ObjectInfo
2021-09-21 17:20:12 +02:00
Vojtech Bubnik
a5a7f64db0
Mesh statistics for imported STLs: Added backwards_edges to open_edges,
...
so that a mesh with incorrectly oriented faces will not be considered
a manifold.
Added assert for 3D convex hulls constructed by QHull. They shall be
manifold (however sometimes they are not).
2021-09-21 16:04:04 +02:00
Justin Schuh
306b54bc0a
Fix float accuracy issue when thick_bridges is off ( #6957 )
2021-09-21 15:50:04 +02:00
enricoturri1966
8d28e39523
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_sinking_objects_collision
2021-09-21 15:48:28 +02:00
enricoturri1966
d854fd0b29
Tech ENABLE_OUT_OF_BED_DETECTION_IMPROVEMENTS - Fixed GLVolumeCollection::check_outside_state() for SLA printers
2021-09-21 15:48:17 +02:00
Vojtech Bubnik
ac7674b85a
Fixed visualization of G-code lines in G-code viewer (3D view).
...
Improved speed of parsing external G-code.
2021-09-21 15:30:37 +02:00
enricoturri1966
1dad3c20f7
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_sinking_objects_collision
2021-09-21 13:52:10 +02:00
enricoturri1966
cf380fb456
Tech ENABLE_OUT_OF_BED_DETECTION_IMPROVEMENTS - Out of bed detection for circular printbeds
2021-09-21 13:51:57 +02:00
Vojtech Bubnik
116fd0526b
Enabling PrusaLink in physcal printers dialog for MINI.
2021-09-21 12:49:25 +02:00
tamasmeszaros
63647f594e
Add dedicated subclass NotificationProgressIndicator
...
to replace ProgressStatusBar and revert changes from b9dab754
, keep UI jobs untouched
2021-09-21 12:34:40 +02:00
Vojtech Bubnik
7e3306c68f
Fixed triangulation of meshes split by the cut tool.
2021-09-21 11:07:40 +02:00
Lukáš Hejl
40e4116d9a
Added a missing include (GCC 11.1).
2021-09-21 10:45:57 +02:00
Vojtech Bubnik
8a2a9dba2f
Eradicated admesh from TriangleMesh:
...
TriangleMesh newly only holds indexed_triangle_set and
TriangleMeshStats. TriangleMeshStats contains an excerpt of stl_stats.
TriangleMeshStats are updated when initializing with indexed_triangle_set.
Admesh triangle mesh fixing is newly only used when loading an STL.
AMF / 3MF / OBJ file formats are already indexed triangle sets, thus
they are no more converted to admesh stl_file format, nor fixed
through admesh repair machinery. When importing AMF / 3MF / OBJ files,
volume is calculated and if negative, all faces are flipped. Also
a bounding box and number of open edges is calculated.
Implemented its_number_of_patches(), its_num_open_edges()
Optimized its_split(), its_is_splittable() using a visitor pattern.
Reworked QHull integration into TriangleMesh:
1) Face normals were not right.
2) Indexed triangle set is newly emitted instead of duplicating
vertices for each face.
Fixed cut_mesh(): Orient the triangulated faces correctly.
2021-09-20 17:12:22 +02:00
Vojtech Bubnik
f484953a5a
Fix of Print setting changes not applied to all copies if one copy rotated #6971
2021-09-20 14:41:19 +02:00
enricoturri1966
35579252b8
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_sinking_objects_collision
2021-09-20 13:53:10 +02:00
enricoturri1966
1af0c5c73b
Tech ENABLE_OUT_OF_BED_DETECTION_IMPROVEMENTS - Call GLVolumeCollection::check_outside_state() only when needed
2021-09-20 13:40:34 +02:00
David Kocik
7dabcf0646
Slicing progress notification cancel button hides notification if process is idle.
2021-09-20 11:22:00 +02:00
enricoturri1966
568483db7b
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_sinking_objects_collision
2021-09-17 14:47:30 +02:00
enricoturri1966
92bf9a664d
Fix of detection of the out of bed state for sinking objects in backend
2021-09-17 14:47:19 +02:00
enricoturri1966
9d7549e661
Use std::optional to replace dirty flags for bounding boxes in Selection
2021-09-17 13:24:37 +02:00
enricoturri1966
6d70ada637
Follow-up of 2f95c7721f
- Even faster implementation of method TriangleMesh::transformed_bounding_box(const Transform3d& trafo, double world_min_z)
2021-09-17 09:45:50 +02:00
Lukas Matena
82b4a4fe11
Place on face improvement: respect different z-rotation of instances
2021-09-17 09:38:53 +02:00
enricoturri1966
f2ef4be1aa
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_sinking_objects_collision
2021-09-17 08:42:10 +02:00
enricoturri1966
2f95c7721f
Follow-up of 5a84b46ec9
- Faster implementation of method TriangleMesh::transformed_bounding_box(const Transform3d& trafo, double world_min_z)
2021-09-17 08:42:01 +02:00
enricoturri1966
0b1e716e22
Tech ENABLE_RETRACT_ACCELERATION set as default
2021-09-17 08:21:25 +02:00
enricoturri1966
5a84b46ec9
Fix of detection of the out of bed state for sinking objects
2021-09-16 13:38:02 +02:00
Lukas Matena
129212a020
Fixed build on Linux (GCC 9.4.0)
2021-09-16 13:14:08 +02:00
Lukas Matena
e8418b509e
Fixed switching of settings access radio buttons in Preferences,
...
the middle button only worked when _MSW_DARK_MODE.
Broken since fd07142
.
2021-09-16 12:40:20 +02:00
enricoturri1966
94f92dee84
Use std::optional to replace dirty flags for bounding boxes in GLVolume
2021-09-16 10:46:56 +02:00
YuSanka
03a692cfd1
Implemented possibility to fix several objects at once
2021-09-16 10:07:00 +02:00
Lukas Matena
fe94a3c8c5
LocalesUtils: fixed BSD and improved performance of decimal point formatting functions
2021-09-15 19:52:32 +02:00
Lukas Matena
aef90bc735
Fixed build on Win and one more warning
2021-09-15 18:39:55 +02:00
Lukas Matena
71ba15b6f0
Fixed comparison of layer height profiles when printing with wipe tower:
...
while the layer height profile vector may not contain all print z
values, the only real case with two eqiuvalent layer height profiles is
when one was created as a copy of another, so the vectors should in fact be equal.
2021-09-15 16:37:41 +02:00
Lukas Matena
677cb58000
Fix several warnings
2021-09-15 16:36:59 +02:00
enricoturri1966
40877b12f7
Vertical alignment of labels in imgui dialog for GLGizmoMmuSegmentation
2021-09-15 14:32:43 +02:00
enricoturri1966
57749d6f09
Small refactoring into ClippingPlane to ensure that the normal is always a unit vector
2021-09-15 13:36:44 +02:00
enricoturri1966
9d5a3a00ef
Hotfix for missing wipe tower after adding an object for an MMU printer
2021-09-15 11:36:58 +02:00
enricoturri1966
2e9b07202a
Fixed build when tech ENABLE_SEAMS_USING_BATCHED_MODELS is disabled
2021-09-15 10:52:16 +02:00
enricoturri1966
b22b7c2bf4
Follow-up of 60b5e0d0d5
- Apply the change only on Windows
2021-09-15 08:30:09 +02:00
Lukas Matena
5dd905fc8c
Added a forward declaration needed on GCC 9.4.0
2021-09-14 22:56:29 +02:00
Li Jiang
50b7a1df9f
fix file import/open bug
2021-09-14 22:12:35 +02:00
enricoturri1966
f132ca9c3c
Tech ENABLE_SINKING_CONTOURS set as default
2021-09-14 15:45:21 +02:00
enricoturri1966
bf21abfbfa
Follow-up of d52ee52098
- Removed forgotten tech key
2021-09-14 15:17:24 +02:00
enricoturri1966
d52ee52098
Tech ENABLE_FIX_IMPORTING_COLOR_PRINT_VIEW_INTO_GCODEVIEWER set as default
2021-09-14 15:05:33 +02:00
Vojtech Bubnik
9d29eddf16
WIP: admesh eradication
...
follow-up to 58d8ab3dea
2021-09-14 14:51:40 +02:00
enricoturri1966
30d2c3787f
Tech ENABLE_DELAYED_TRANSPARENT_VOLUMES_RENDERING set as default
2021-09-14 14:34:21 +02:00
Vojtech Bubnik
d749baf6bc
Fix of 58d8ab3dea
2021-09-14 13:11:21 +02:00
Vojtech Bubnik
58d8ab3dea
Removed the PRUS format parser. WIP: admesh eradication:
...
stl_stats are newly only accessed by TriangleMesh::stats(),
most of the direct access to TriangleMesh::stl is gone with the exception
of parsing input files (3MF, AMF, obj).
2021-09-14 11:58:14 +02:00
Lukáš Hejl
1c6ecd9c1a
Replaced atof and atoi inside 3MF attribute parsing with fast_float::from_chars and boost::spirit that are faster.
2021-09-14 11:09:43 +02:00
enricoturri1966
a74f3e3fc0
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_reload_from_disk_changes
2021-09-14 10:05:18 +02:00
Vojtech Bubnik
0a51afa3e6
Fix of Can't convert polyline with more than two points to a line ( #6933 )
...
Sometimes Clipper produces a polyline with more than 2 points when
clipping a line with a polygon or a set of polygons. We hope the intermediate
points are collinear with the line, so we may just ignore them.
2021-09-13 15:40:56 +02:00
Vojtech Bubnik
cab71073a1
Some reduction of unnecessary conversions when calling ClipperUtils.
2021-09-13 15:13:10 +02:00
enricoturri1966
60b5e0d0d5
Fixed wrong layout of preview's combos popup windows the first time they are open
2021-09-13 13:34:49 +02:00
Vojtech Bubnik
f9a5ee725d
Follow-up to ae7d6db1d9
...
Exporting G-code on a worker thread did not work correctly as the worker
threads were using user's locale, not "C" locale.
The "C" locale is newly enforced to TBB worker threads by
name_tbb_thread_pool_threads_set_locale()
2021-09-13 13:04:12 +02:00
Vojtech Bubnik
e78d647cc2
Follow-up to e7591e6aa6
...
GCodeFormatter default copy constructor / copy operators were not safe
and they were used in debug mode.
2021-09-13 12:51:50 +02:00
Vojtech Bubnik
e7591e6aa6
GCodeWriter: published GCodeFormatter, made it more generic, so
...
it could be used outside of GCodeWriter.
Ported the GCodeWriter::retract/deretract to GCodeFormatter.
2021-09-13 11:55:44 +02:00
enricoturri1966
fda8ef6fce
#5471 - Make the View controls 'sticky'
2021-09-13 11:16:13 +02:00
Vojtech Bubnik
880feb3a3d
GCodeViewer slight opitmization: reuse (move) G-code line indices
...
in G-code viewer.
2021-09-13 10:41:28 +02:00
YuSanka
5a95794913
OSX specific: Improvements for wxMultiChoiceDialog: Height of a ChoiceListBox will respect to items count
...
This improvement fixed #6926 - Checkbox columns in modal windows are stretched (macOS)
2021-09-13 10:30:09 +02:00
Vojtech Bubnik
ae7d6db1d9
Parallelization of the G-code export.
...
Follow-up to
03b6048684
beee18f229
b5a007a683
etc
2021-09-13 10:04:21 +02:00
Lukas Matena
4ac013ec9c
Fixed painting gizmos with modifiers below the bed:
...
- When a modifier was below the bed and all the object parts above, it would clip
the modifier but not triangulate the cut.
- When an object part was below, it would triangulate all modifiers with
opaque orange color.
Both should now be fixed.
2021-09-13 09:02:11 +02:00
Lukáš Hejl
d2a185ddb6
Optimized export of floating-point value inside emit_axis.
...
Change the behavior of generated G-code commands. Now all redundancy padding zeros are removed, which makes G-code a little bit smaller.
2021-09-11 00:54:30 +02:00
Lukáš Hejl
ad65366ac7
Added fast_float library as a replacement for std::from_chars and strtod.
2021-09-11 00:54:30 +02:00
YuSanka
670ec06b97
"CANCEL" button is deleted from "Support Generator" MessageDialog
...
to avoid confusions when "Supports mode" is switched from right panel
2021-09-10 15:31:18 +02:00
David Kocik
b9dab7540e
Removes bottom status bar.
...
StatusBar class calls are commented out and replaced with notifications.
SlicicingProgress notification shows progress of slicing, ProgressIndicator notification handles other progress information, like arrange objects etc.
2021-09-10 14:35:13 +02:00
YuSanka
3db4804e47
MSW specific: ObjectList: Fixed eternal Editor Control
...
Steps to reproduce of a bug:
1. Add object
2. Click the Cog icon with the left mouse button
3. DoubleClick on name of object > An Editor Control appears that cannot be deleted any way
2021-09-10 14:08:07 +02:00
Vojtech Bubnik
dc4b783e9e
Pimping up SpiralVase code, fix of 03b6048684
2021-09-10 12:10:00 +02:00