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

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

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

import java.util.Stack;


final class Sqrt implements PostScriptOperation {
	@Override
	/**
	 * num sqrt real 

* * returns the square root of num, which must be a * nonnegative number. The result is a real number.

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