Cutouts in the Front Plane
//-- front plane -- origin is pcb[0,0,0]
// (0) = posy
// (1) = posz
// (2) = width
// (3) = height
// (4) = angle
// (5) = { yappRectangle | yappCircle }
// (6) = { yappCenter }
cutoutsFront = [
[10, 0, 20, 8, 0, yappRectangle]
, [55, 0, 10, 14, 0, yappRectangle, yappCenter]
];

Using the angle parameter:
//-- front plane -- origin is pcb[0,0,0]
// (0) = posy
// (1) = posz
// (2) = width
// (3) = height
// (4) = angle
// (5) = { yappRectangle | yappCircle }
// (6) = { yappCenter }
cutoutsFront = [
[10, 0, 10, 14, 0, yappRectangle, yappCenter]
, [35, 0, 10, 14, 20, yappRectangle, yappCenter]
, [60, 0, 10, 14, 45, yappRectangle, yappCenter]
];

Last modified 7mo ago