All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openpdf.renderer.function.postscript.operation.Log Maven / Gradle / Ivy

The newest version!
package org.openpdf.renderer.function.postscript.operation;

import java.util.Stack;


final class Log implements PostScriptOperation {
	@Override
	/**
	 * num log real 

* * returns the common logarithm (base 10) of num. * The result is a real number.

* * errors: rangecheck, stackunderflow, typecheck */ public void eval(Stack environment) { environment.push(Math.log10((Double)environment.pop())); } }