Lukas Matena
205d9b7acf
Removed an obsolete assert
2024-05-14 07:33:07 +02:00
Martin Šach
a0d6d9f4c3
Use lower arm length for better seams on spheres
2024-05-13 13:21:42 +02:00
Martin Šach
8ed0614b90
Gracefuly handle cases where the geometetry is not the same as generated perimeters
2024-05-13 11:23:45 +02:00
Martin Šach
9bf4a5f14b
Add continuity modifier to seam aligned.
...
Previously, when searching for the optimal seam candidate, no previous
seams were taken into account. This sometimes led to ugly leaps in the seam
path. Now the visibility of a seam candidate that continues from a
previous seam is reduced, meaning there is a bigger chance it will
be picked.
2024-05-10 10:34:56 +02:00
Lukas Matena
b23fd416c3
Merge fix of SPE-2239
2024-05-06 10:28:44 +02:00
Martin Šach
9a1dcc4720
Handle special seam case of just 2 or 3 perimeters.
...
If there are only 2 or 3 perimeters on a layer, exactly two of them are
external and just one of them is a hole, then the seams should be
choosen next to each other on the external perimeters.
2024-05-06 10:28:16 +02:00
Lukas Matena
d158c0a4de
Merge 'e60b8b1' (SPE-2087)
2024-05-06 10:25:35 +02:00
Martin Šach
e60b8b1193
Seam placement improvements.
...
Previously there was an algirithm that was fitting a curve through
the resulting seam points. This worked for smooth models, but was
failing for some very basic cases (such as a cylinder).
The new algorithm builds on the previously implemented visibility
algirithm but does not do the curve fitting anymore.
Now the code is more separated for the four seam placement
options (rear, random, aligned, nearest).
Nearest and random are handled as one would expect.
Aligned is handled in a more "brute force" manner
(trying multiple seams and picking the best one)
and rear smartly switches between two modes
(center straight line projection and max y).
2024-05-06 10:11:32 +02:00
Martin Šach
b350aa610d
Fix includes.
2024-05-06 10:11:32 +02:00
Lukáš Hejl
b8b3cccb40
Update to 6.4.2.
2024-05-06 10:11:32 +02:00
Lukáš Hejl
2feea1124e
Update to 6.4.1.
2024-05-06 10:11:32 +02:00
Lukáš Hejl
fa34a51712
Update to 6.4.0.
2024-05-06 10:11:32 +02:00
Lukáš Hejl
a47101764b
Update to 6.3.0.
2024-05-06 10:11:32 +02:00
Lukáš Hejl
1872b4f404
Backport fix for the misaligned duplicate point on cylinders.
2024-05-06 10:11:32 +02:00
Lukas Matena
560c54f3ef
Merge branch 'lh_arachne_perimeters_order'
2024-05-03 16:20:09 +02:00
Lukáš Hejl
e704d8216d
Remove some unused functions from Arachne perimeter generator.
2024-05-03 16:19:53 +02:00
Lukáš Hejl
10875082de
SPE-1963: Improve ordering of perimeters with Arachne perimeter generator
...
Especially in cases when the object is composed only of 2 external perimeters and 1 or 2 internal perimeters, the order of perimeters wasn't optimal and differed from the Classic perimeter generator. That caused unnecessary long travels before the external contour was printed.
The ordering of perimeters is slightly inspired by the latest changes in CuraEngine.
2024-05-03 16:19:53 +02:00
Lukas Matena
a697ca8f12
Merge branch 'lh_fix_arcwelder_travel'
2024-05-03 16:19:24 +02:00
Lukáš Hejl
7e06a955bd
SPE-2196: Fix the incorrect direction of travel at the end of the external perimeter when ArcWelder is enabled together with disabled wipes.
2024-05-03 14:37:27 +02:00
Lukas Matena
e0c0275ae0
Fix DoubleSlider hangs on ticks with delete icon
2024-05-02 15:37:54 +02:00
Lukas Matena
7b7d310f7a
Merge branch 'ys_spe2185'
2024-05-02 13:28:19 +02:00
YuSanka
0e4691964e
Fix for #10850 - Problems with negative volumes when cutting the object
2024-05-02 13:27:58 +02:00
YuSanka
9116db53c0
Fix for #12206 - Dowel connector hole often disappears after one of the resultant objects is cut with a dovetail cut
2024-05-02 13:27:54 +02:00
enricoturri1966
2eeca737ea
Technology ENABLE_OPENGL_AUTO_AA_SAMPLES set as default
2024-05-02 13:23:26 +02:00
Lukas Matena
69bb0d87e7
Merge branch 'ys_spe2277'
2024-04-30 16:03:02 +02:00
YuSanka
35e736a8e5
ImGuiDoubleSlider: Fixed flickering on moving of the overlapped thumbs
...
+ Hide sliders after theirs creation
2024-04-30 16:02:31 +02:00
YuSanka
2241c4d9d5
ImGuiPureWrap: Improvements for draw_hexagon()
...
Corners can be rounded now
2024-04-30 16:02:31 +02:00
David Kocik
da2a06c06d
Fix of search for compatible filament to select. (SPE-2278)
...
Crash was caused by filament without vendor.
2024-04-30 13:33:04 +02:00
Filip Sykala - NTB T15p
ea3ff42278
Unify and heal after add bouning box (SPE-2271, #12627 )
2024-04-30 13:05:35 +02:00
enricoturri1966
9f77f9c643
SPE-2270 - Fixed crash when adding color change
2024-04-30 13:02:35 +02:00
Lukas Matena
5bbc430e53
Do not load colorchanges from 3MF when loading geometry only
2024-04-30 12:53:30 +02:00
YuSanka
c2dee2c949
Correct update of teh info line for Connect, when physical printer is selected (SPE-2261)
2024-04-30 12:51:32 +02:00
Lukáš Hejl
2de1f3aa45
SPE-2256: Fix the issue that we used the old Voronoi graph during the detection of invalid Voronoi diagrams.
...
This happens because we didn't set a modified flag that is required to be set before we use the new Voronoi graph.
Possibly related to #12385
2024-04-30 12:48:46 +02:00
Lukas Matena
51e65abc86
Merge branch 'ys_spe2172'
2024-04-30 12:46:26 +02:00
YuSanka
aa6c37adbe
DiffPresetDialog: Separate Template presets to the own group
2024-04-30 12:46:09 +02:00
YuSanka
2b837d9f6e
Fix for SPE-2172 : Compare preset dialog doesn't respect compatibility condition.
2024-04-30 12:46:09 +02:00
YuSanka
9b6b20070a
Fix for SPE-2170 : Incorrectly imported settings/overrides from g-code file.
...
Write to G-code whole filament overridden even if some of then are NAN.
2024-04-30 12:44:05 +02:00
Lukas Matena
d586870feb
Bumped up version to 2.8.0-alpha4
2024-04-25 13:36:09 +02:00
David Kocik
da9588607b
Fix of crash when wrongly reading nozzle_diameter from config
...
+ Treat 0.0 nozzle diameter from Connect as no nozzle
2024-04-25 13:31:52 +02:00
Lukas Matena
5ca91d7959
Merge branch 'ys_dbl_sl_pure_next'
2024-04-25 10:28:17 +02:00
YuSanka
c3e0312b12
Fixed min size of application
2024-04-25 10:28:03 +02:00
YuSanka
44d5862667
DoubleSliderForLayers: Suppress to edit and show ticks in SLA mode
2024-04-25 10:28:03 +02:00
YuSanka
2b93bd97c6
Topbar: do not redraw the buttons all the time
2024-04-25 10:28:03 +02:00
YuSanka
2b4a962154
ImguiDoubleSlider: Extentions for ImGuiControl.draw_label()
...
Added possibility to mirror of the label and add the border
2024-04-25 10:28:03 +02:00
YuSanka
320d11d5db
ImguiDoubleSlider: Change layout of horizontal slider and position_window
2024-04-25 10:28:03 +02:00
Lukas Matena
eada1893e6
Merge remote-tracking branch 'private/dk_web'
2024-04-25 09:35:15 +02:00
David Kocik
2fcb5b2c2c
Perform refresh when test connection fails.
2024-04-24 16:17:09 +02:00
David Kocik
cb80309535
Delete leftovers from printer_type implementation.
2024-04-24 15:40:03 +02:00
David Kocik
ffeb068452
Change printer maps data from model to model nozzle pair
2024-04-24 15:40:03 +02:00
David Kocik
b402c42e75
Do not show error page when not webview shown.
2024-04-24 14:57:09 +02:00