mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-13 01:37:53 -06:00
Button "Load Lambda" (in the Object Settings) works now
This commit is contained in:
parent
3e0ff5e9ef
commit
a0090fccb5
6 changed files with 107 additions and 17 deletions
|
@ -68,6 +68,13 @@ enum ogGroup{
|
|||
ogPartSettings
|
||||
};
|
||||
|
||||
enum LambdaTypeIDs{
|
||||
LambdaTypeBox,
|
||||
LambdaTypeCylinder,
|
||||
LambdaTypeSphere,
|
||||
LambdaTypeSlab
|
||||
};
|
||||
|
||||
class Tab;
|
||||
class ConfigOptionsGroup;
|
||||
typedef std::vector<ModelObject*> ModelObjectPtrs;
|
||||
|
@ -91,13 +98,13 @@ inline t_file_wild_card& get_file_wild_card() {
|
|||
|
||||
struct OBJECT_PARAMETERS
|
||||
{
|
||||
std::string type = "box";
|
||||
double dim[3];// = { 1.0, 1.0, 1.0 };
|
||||
int cyl_r = 1;
|
||||
int cyl_h = 1;
|
||||
double sph_rho = 1.0;
|
||||
double slab_h = 1.0;
|
||||
double slab_z = 0.0;
|
||||
LambdaTypeIDs type = LambdaTypeBox;
|
||||
double dim[3];// = { 1.0, 1.0, 1.0 };
|
||||
int cyl_r = 1;
|
||||
int cyl_h = 1;
|
||||
double sph_rho = 1.0;
|
||||
double slab_h = 1.0;
|
||||
double slab_z = 0.0;
|
||||
};
|
||||
|
||||
void disable_screensaver();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue