blob: a7be764264dbf7d88054b1bc48b15c352058fadb [file] [log] [blame]
Austin Schuh88af0852016-12-04 20:31:32 -08001package y2015.actors;
Austin Schuh813b9af2015-03-08 18:46:58 -07002
3// Parameters to send with start.
4struct StackParams {
Austin Schuh85bda502015-03-15 19:57:27 -07005 // If true, don't grab the lower tote after lowering.
6 bool only_place;
7
8 // The angle to move the arm to while lowering it.
9 double arm_clearance;
10
Austin Schuh813b9af2015-03-08 18:46:58 -070011 double claw_out_angle;
12 // The height just above the box to move before lowering.
13 double over_box_before_place_height;
14
15 // Bottom position.
16 double bottom;
17};