Hello All,
I was wondering if anybody knew what the following code meant in terms of what task it will make the 3D printer perform;
// Effective X/Y positions of the three vertical towers.
#define SIN_60 0.8660254037844386
#define COS_60 0.5
#define DELTA_TOWER1_X -SIN_60DELTA_RADIUS // front left tower
#define DELTA_TOWER1_Y -COS_60DELTA_RADIUS
#define DELTA_TOWER2_X SIN_60DELTA_RADIUS // front right tower
#define DELTA_TOWER2_Y -COS_60DELTA_RADIUS
#define DELTA_TOWER3_X 0.5 // back middle tower
#define DELTA_TOWER3_Y DELTA_RADIUS
Thanks!