Skip to content

Commit

Permalink
Update to Print Studio 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
daviesm committed Jan 22, 2016
1 parent 60eabc7 commit a55facc
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,13 @@ function getParam( profile, emberName, name, convCode, customConv )

value = handleDecimals( emberName, value )
}
else if( typeof value == "boolean" )
{
if( value )
return 1;
else
return 0;
}

return value;
}
Expand Down Expand Up @@ -180,7 +187,9 @@ var mapping = [
[ "ModelSeparationRotJerk", "model_layer_separation_slide_maximum_jerk", null, 60*60*60* 180/Math.PI/10000 ],
[ "ModelSeparationZJerk", "model_layer_separation_z-axis_maximum_jerk", null, 60*60*60*10 ],
[ "ModelApproachRotJerk", "model_layer_approach_slide_maximum_jerk", null, 60*60*60* 180/Math.PI/10000 ],
[ "ModelApproachZJerk", "model_layer_approach_z-axis_maximum_jerk", null, 60*60*60*10 ]
[ "ModelApproachZJerk", "model_layer_approach_z-axis_maximum_jerk", null, 60*60*60*10 ],

[ "RotateHomeOnApproach", "use_rotation_homing_for_approach" ]

];

Expand Down

0 comments on commit a55facc

Please sign in to comment.