3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-11-05 11:00:05 +01:00

Added a swap function to the expression parser.

Dieser Commit ist enthalten in:
TomyLobo 2011-11-28 00:29:38 +01:00
Ursprung 255e342353
Commit a6f0a48f84

Datei anzeigen

@ -257,7 +257,16 @@ public final class Functions {
x.assign(xOld * cosF - yOld * sinF);
y.assign(xOld * sinF + yOld * cosF);
return 0;
return 0.0;
}
public static final double swap(LValue x, LValue y) throws EvaluationException {
final double tmp = x.getValue();
x.assign(y.getValue());
y.assign(tmp);
return 0.0;
}