gui: fix zoom-to-mouse
Plater disappeared when zoom-to-mouse enabled and user tries to zoom
with a side view enabled (Ctrl+<3..6>).
Mouse/screen center position estimation in 3D is made by calculating
intersection of a mouse vector which comes 'through' the screen with an
XY plane. However, when screen is parallel to Z axis, intersection point
located at infinite which results in infinite camera translation vector.
This change switches mouse position estimation to use of projection
matrix like its done for camera panning.
* rework of Linux build scripts
* change to ninja build system
* distribution specific logic broken out
* n/9 progress entries make no sense, removing
* {}'ing all variables
* sorting help output
* sorting package lists
* project doesn't use submodules, removing logic
Signed-off-by: Jamin W. Collins <jamin.collins@gmail.com>
* drop gtk-2
Signed-off-by: Jamin W. Collins <jamin.collins@gmail.com>
* further refinements of BuildLinux.sh
Signed-off-by: Jamin W. Collins <jamin.collins@gmail.com>
---------
Signed-off-by: Jamin W. Collins <jamin.collins@gmail.com>
* e3v3se: disable m73 as not supported in FW
* e3v3se: remove thumbnails
Remove thumbnails generation to not confuse users.
Currently event CrealityPrint does not generate thumbnails for the E3 V3 SE.
* e3v3se: update motion capabilities
Update motion parameters for the Ender 3 V3 SE profiles:
- max acceleration on all axis to 2500 as per product spec
- max X and Y speeds to 250 as per product spec
- max Z speed to 5 as set in factory defaults (M502, M503)
- max E speed to 40 as presented in recommended print parameters on the
product page
Product spec sheet:
https://wiki.creality.com/en/ender-series/ender-3-v3-se/quick-start-guide/user-manual
* fix: replace extruder_clearance_max_radius with extruder_clearance_radius
* fix: add if m_plater before accessing preset_bundle
* fix: generate thumbnail only when callback is defined
* fix: change default gcode thumbnail format to png
* Fix model load in debug build
Debug build exit with error on model load due to failed assertion (file
path redacted):
orca-slicer: <...>/OrcaSlicer/src/libslic3r/Model.cpp:1361: void Slic3r::ModelObject::update_min_max_z(): Assertion `! this->instances.empty()' failed.
Assertion failed due to model->ensure_on_bed() being called for object
which yet to be load from file.
Do not call ensure_on_bed() for models read from file since they may be
read with no default instance.
ensure_on_bed() called later within withing Plater::load_model_objects()
for each object added.
* Rework according to code review comment
* gui: camera navigation style option
Add camera navigation style config option as a preparation for
introduction of touchpad style navigation
* gui: touchpa-friently 3d navigation
Implement FreeCAD-inspired touchpad-friendly camera operation mode:
- Shift+move: panning
- Alt+move: rotation
Set "Camera mode" to "Touchpad" in settings menu to activate this mode.
* cache current navigation style in class member variable
Cache current navigation style on canvas focus, do not
request settings value each mouse event.
* force focuse 3d preview on preferences window close
Explicitly force focus 3D preview pane on closing preferences window.
This allows preferences be updated only once without checking current
value each input event.
Another benefit is to have 3D view in focus is that user could
immediatelly use 3d-view shortcuts like Ctrl+<1..7> without clicking to
the 3D view first.
* Update OrcaSlicer_es.po
* Merge remote-tracking branch 'upstream/main' into Spanish_Translation
* Merge remote-tracking branch 'upstream/main' into Spanish_Translation
* some changes
* Merge remote-tracking branch 'upstream/main' into Spanish_Translation
* Some fixes
* More fixes
* More fixes and improves
* More fixes
* Add Creality Ender-3 S1 Plus
* Misc
* Fix nozzle_diameter
* Add printer_variant value
* Change build plate model/texture to use Ender-3 V3 SE
* Enable mesh leveling
* Up max travel acceleration to 5000
* Enable infill_combination
* Add Draft profiles
* Change buildplate model/texture
* Fix build plate model
* Add retraction & detraction speed & change retraction length
* Add filament_ to the beginning
* Revert retraction & detraction speed & retraction length
* Tests
Trying to change retract and detract speed as well as retraction length
Also trying to have Z-hop only happen on top layers
* Apply new values to other nozzles
* disable z_hop
* Lower build plate model
* Resolve merge conflicts
* temporarily remove Ender-3 S1 Plus
* Re-add Ender-3 S1 Plus
* Add CR-10 SE and standard profiles
* Misc
Add more perimeters to CR-10 SE profiles
Add printer to filament profiles
Link everything in Creality.json
* Fix two bugs
* Forgot this
* New Italian Translation
Translated new strings introduced
* Italian Translations concerning scarf joint
Translated all sentences regarding scarf joint
* Update OrcaSlicer_it.po
Corrected some typos
* Fixed some Italian Translation
Changed E' to È
Changed E' to Indica
Fixed Word Brim Ears to Brim a ORecchie
* Fixed some italian translations
Changed HOT BED from "Letto caldo" to "Piano Riscaldato"
Changed Build Plate from "Piatto di Costruzione" to "Piatto di Stampa"
* Substantial changes to the Italian language
Make substantial changes to the Italian language via POEDIT.
Partially eliminated errors in POEDIT concerning missing or excess spaces
Replaced the words UGELLO with NOZZLE
* gui: fix media eject on linux (#4700)
Removable media is not ejected on linux platform
Make get_removable_drive_from_path() check if path is a dir or not.
Trim last component in latter case only.
* Revert unnecessary style changes
* Fixes#2992 - emboss numbers for 290-305
The existing temperature tower model had the numbers, but they were not
embossed for:
* 290
* 295
* 300
* 305
Signed-off-by: Jamin W. Collins <jamin.collins@gmail.com>