Package de.eydamos.guiadvanced.util

Examples of de.eydamos.guiadvanced.util.Rectangle.draw()


    @Override
    public void draw(Minecraft mc, int mouseX, int mouseY, float something) {
        Rectangle rectangle = new Rectangle(1, 1);
        // draw upper left corner
        rectangle.setBackgroundPosition(201, 0);
        rectangle.draw(xPosition, yPosition);
        // draw upper right corner
        rectangle.setBackgroundPosition(218, 0);
        rectangle.draw(xPosition + width - 1, yPosition);
        // draw lower left corner
        rectangle.setBackgroundPosition(201, 17);
View Full Code Here


        // draw upper left corner
        rectangle.setBackgroundPosition(201, 0);
        rectangle.draw(xPosition, yPosition);
        // draw upper right corner
        rectangle.setBackgroundPosition(218, 0);
        rectangle.draw(xPosition + width - 1, yPosition);
        // draw lower left corner
        rectangle.setBackgroundPosition(201, 17);
        rectangle.draw(xPosition, yPosition + height - 1);
        // draw lower right corner
        rectangle.setBackgroundPosition(218, 17);
View Full Code Here

        // draw upper right corner
        rectangle.setBackgroundPosition(218, 0);
        rectangle.draw(xPosition + width - 1, yPosition);
        // draw lower left corner
        rectangle.setBackgroundPosition(201, 17);
        rectangle.draw(xPosition, yPosition + height - 1);
        // draw lower right corner
        rectangle.setBackgroundPosition(218, 17);
        rectangle.draw(xPosition + width - 1, yPosition + height - 1);

        // borders top/bottom
View Full Code Here

        // draw lower left corner
        rectangle.setBackgroundPosition(201, 17);
        rectangle.draw(xPosition, yPosition + height - 1);
        // draw lower right corner
        rectangle.setBackgroundPosition(218, 17);
        rectangle.draw(xPosition + width - 1, yPosition + height - 1);

        // borders top/bottom
        rectangle.setWidth(width - 2);
        rectangle.setBackgroundRepeat(BackgroundRepeat.REPEAT_X);
        // draw top border
View Full Code Here

        // borders top/bottom
        rectangle.setWidth(width - 2);
        rectangle.setBackgroundRepeat(BackgroundRepeat.REPEAT_X);
        // draw top border
        rectangle.setBackgroundPosition(202, 0);
        rectangle.draw(xPosition + 1, yPosition);
        // draw bottom border
        rectangle.setBackgroundPosition(202, 17);
        rectangle.draw(xPosition + 1, yPosition + height - 1);

        // borders left/right
View Full Code Here

        // draw top border
        rectangle.setBackgroundPosition(202, 0);
        rectangle.draw(xPosition + 1, yPosition);
        // draw bottom border
        rectangle.setBackgroundPosition(202, 17);
        rectangle.draw(xPosition + 1, yPosition + height - 1);

        // borders left/right
        rectangle.setWidth(1);
        rectangle.setHeight(height - 2);
        rectangle.setBackgroundRepeat(BackgroundRepeat.REPEAT_Y);
View Full Code Here

        rectangle.setWidth(1);
        rectangle.setHeight(height - 2);
        rectangle.setBackgroundRepeat(BackgroundRepeat.REPEAT_Y);
        // draw left border
        rectangle.setBackgroundPosition(201, 1);
        rectangle.draw(xPosition, yPosition + 1);
        // draw right border
        rectangle.setBackgroundPosition(218, 1);
        rectangle.draw(xPosition + width - 1, yPosition + 1);

        // draw background
View Full Code Here

        // draw left border
        rectangle.setBackgroundPosition(201, 1);
        rectangle.draw(xPosition, yPosition + 1);
        // draw right border
        rectangle.setBackgroundPosition(218, 1);
        rectangle.draw(xPosition + width - 1, yPosition + 1);

        // draw background
        rectangle.setWidth(width - 2);
        rectangle.setHeight(height - 2);
        rectangle.setBackgroundSize(14, 14);
View Full Code Here

        rectangle.setWidth(width - 2);
        rectangle.setHeight(height - 2);
        rectangle.setBackgroundSize(14, 14);
        rectangle.setBackgroundRepeat(BackgroundRepeat.REPEAT);
        rectangle.setBackgroundPosition(202, 1);
        rectangle.draw(xPosition + 1, yPosition + 1);
    }

    @Override
    public void setAbsolutePosition(int guiLeft, int guiTop) {
        xPosition = guiLeft + relativePositionX;
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.