Examples of lowerLeftX()


Examples of org.axsl.ps.BoundingBox.lowerLeftX()

    /**
     * {@inheritDoc}
     */
    protected String specialXObjectDictEntries() {
        final BoundingBox boundingBox = this.getBoundingBox();
        final float llx = boundingBox.lowerLeftX();
        final float lly = boundingBox.lowerLeftY();
        final float urx = boundingBox.upperRightX();
        final float ury = boundingBox.upperRightY();
        final StringBuilder buffer = new StringBuilder();
        buffer.append("/FormType 1" + EOL);
View Full Code Here

Examples of org.axsl.ps.BoundingBox.lowerLeftX()

        buffer.append("BeginEPSF");

        buffer.append(x + " " + (y - h) + " translate");
        buffer.append("0.0 rotate");
        buffer.append((long) (w / bboxw) + " " + (long) (h / bboxh) + " scale");
        buffer.append(-bbox.lowerLeftX() + " " + (-bbox.lowerLeftY()) + " translate");
        buffer.append(bbox.lowerLeftX() + " " + bbox.lowerLeftY() + " " + bboxw + " " + bboxh
                + " rectclip");
        buffer.append("newpath");
        final String string1 = buffer.toString();
View Full Code Here

Examples of org.axsl.ps.BoundingBox.lowerLeftX()

        buffer.append(x + " " + (y - h) + " translate");
        buffer.append("0.0 rotate");
        buffer.append((long) (w / bboxw) + " " + (long) (h / bboxh) + " scale");
        buffer.append(-bbox.lowerLeftX() + " " + (-bbox.lowerLeftY()) + " translate");
        buffer.append(bbox.lowerLeftX() + " " + bbox.lowerLeftY() + " " + bboxw + " " + bboxh
                + " rectclip");
        buffer.append("newpath");
        final String string1 = buffer.toString();

        buffer = new StringBuilder();
View Full Code Here

Examples of org.axsl.ps.BoundingBox.lowerLeftX()

    /**
     * {@inheritDoc}
     */
    protected AffineTransform getUserSpaceTransform() {
        final BoundingBox boundingBox = this.getBoundingBox();
        final float llx = boundingBox.lowerLeftX();
        final float lly = boundingBox.lowerLeftY();
        float xTranslate = 0;
        if (llx < 0) {
            /* If the bounding box of the graphic is negative, adjust it up to
             * zero. */
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.