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

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

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

import java.util.Stack;

public interface PostScriptOperation {

    /**
     * evaluate the function, popping the stack as needed and pushing results.
     */
    public void eval(Stack environment);

}