mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-29 19:53:44 -06:00
18 lines
548 B
C++
18 lines
548 B
C++
#ifndef _technologies_h_
|
|
#define _technologies_h_
|
|
|
|
// 1.42.0 techs
|
|
#define ENABLE_1_42_0 1
|
|
|
|
// Add double click on gizmo grabbers to reset transformation components to their default value
|
|
#define ENABLE_GIZMOS_RESET (1 && ENABLE_1_42_0)
|
|
// Uses a unique opengl context
|
|
#define ENABLE_USE_UNIQUE_GLCONTEXT (1 && ENABLE_1_42_0)
|
|
// New selections
|
|
#define ENABLE_EXTENDED_SELECTION (1 && ENABLE_1_42_0)
|
|
// Add mirror components along the three axes in ModelInstance and GLVolume
|
|
#define ENABLE_MIRROR (0 && ENABLE_1_42_0)
|
|
|
|
#endif // _technologies_h_
|
|
|
|
|