com.codetaco.math.impl.function.FuncSin Maven / Gradle / Ivy
package com.codetaco.math.impl.function;
import com.codetaco.math.impl.Function;
import com.codetaco.math.impl.ValueStack;
import com.codetaco.math.impl.token.TokVariable;
import java.text.ParseException;
/**
*
* FuncSin class.
*
*
* @author Chris DeGreef [email protected]
* @since 1.3.9
*/
public class FuncSin extends Function {
/**
*
* Constructor for FuncSin.
*
*/
public FuncSin() {
super();
}
/**
*
* Constructor for FuncSin.
*
*
* @param var a {@link com.codetaco.math.impl.token.TokVariable} object.
*/
public FuncSin(final TokVariable var) {
super(var);
}
/**
* {@inheritDoc}
*/
@Override
public void resolve(final ValueStack values) throws Exception {
if (values.size() < 1) {
throw new Exception("missing operands for " + toString());
}
try {
final double degrees = values.popDouble();
final double rads = degrees * (Math.PI / 180);
values.push(new Double(Math.sin(rads)));
} catch (final ParseException e) {
e.fillInStackTrace();
throw new Exception(toString() + "; " + e.getMessage(), e);
}
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return "function(sin)";
}
}