# svepivot_labels_00
# svepivots
def r3 = round(SVEPivots().r3,2);
def r2 = round(SVEPivots().r2,2);
def r1 = round(SVEPivots().r1,2);
def pp = round(SVEPivots().pp,2);
def s1 = round(SVEPivots().s1,2);
def s2 = round(SVEPivots().s2,2);
def s3 = round(SVEPivots().s3,2);
addlabel(1, " " , color.black);
addlabel(1, "R3 " + r3, color.green);
addlabel(1, "R2 " + r2, color.green);
addlabel(1, "R1 " + r1, color.green);
addlabel(1, "PP " + pp, color.magenta);
addlabel(1, "S1 " + s1, color.red);
addlabel(1, "S2 " + s2, color.red);
addlabel(1, "S3 " + s3, color.red);
#