master
Nova deViator 2015-09-09 20:13:15 +02:00
parent c8acefd9c4
commit 0c837189f4
1 changed files with 5 additions and 5 deletions

View File

@ -287,7 +287,7 @@ post(" ");
nextdelta = siLines[step+2][0].asFloat - nextplayhead; nextdelta = siLines[step+2][0].asFloat - nextplayhead;
//action::documentation //action::documentation
post("\n~" + step); post("\n~" + step.asString.padLeft(3));
post("|"); post("|");
post(siLines[step][1]); post(siLines[step][1]);
post("| "); post("| ");
@ -297,9 +297,9 @@ post(" ");
post(" | "); post(" | ");
// post(siLines[step][2]); // post(siLines[step][2]);
// post( "nm | " ); // post( "nm | " );
post(frequency.round(1)); post(frequency.round(1).asString.padLeft(5));
post("Hz | "); post("Hz | ");
post(frequency_alt.round(1)); post(frequency_alt.round(1).asString.padLeft(5));
post("Hz | "); post("Hz | ");
post(amp.ampdb.round(1)); post(amp.ampdb.round(1));
post("dB \\ "); post("dB \\ ");
@ -311,9 +311,9 @@ post(" ");
post("| "); post("| ");
post(delta.round(1)); post(delta.round(1));
post("s / "); post("s / ");
post(nextfrequency.round(1)); post(nextfrequency.round(1).asString.padLeft(5));
post("Hz | "); post("Hz | ");
post(nextfrequency_alt.round(1)); post(nextfrequency_alt.round(1).asString.padLeft(5));
post("Hz | "); post("Hz | ");
post(nextamp.ampdb.round(1)); post(nextamp.ampdb.round(1));
post("dB \\ "); post("dB \\ ");