com.codetaco.math.impl.function.FuncCos 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;
/**
*
* FuncCos class.
*
*
* @author Chris DeGreef [email protected]
* @since 1.3.9
*/
public class FuncCos extends Function {
/**
*
* Constructor for FuncCos.
*
*/
public FuncCos() {
super();
}
/**
*
* Constructor for FuncCos.
*
*
* @param var a {@link com.codetaco.math.impl.token.TokVariable} object.
*/
public FuncCos(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.cos(rads)));
} catch (final ParseException e) {
e.fillInStackTrace();
throw new Exception(toString() + "; " + e.getMessage(), e);
}
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return "function(cos)";
}
}