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

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

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

import java.util.Stack;


final class Ln implements PostScriptOperation {
	@Override
	/**
	 * num ln real 

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

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