Package graphics

Examples of graphics.GraphicsQuitPoint


    // csompontok grafikus osztalyainak letrehozasa
    // 1. kell egy GraphicsXXX osztaly
    // 2. kell egy Draw osztaly
    // 3. ezeknek megadjuk az adott parametereit
    GraphicsQuitPoint qpg1 = new GraphicsQuitPoint();
    qpg1.setPosition(0, 375);
    gr.addGraphicsObject(qpg1, qp1);
    DrawQuitPoint qpd1 = new DrawQuitPoint();
    qpg1.setDraw(qpd1);
    qpg1.setCross(qp1);

    // hozzaadjuk az entrypointot a grahpics-hoz
    GraphicsEntryPoint epg1 = new GraphicsEntryPoint();
    epg1.setPosition(0, 75);
    gr.addGraphicsObject(epg1, ep1);
View Full Code Here

TOP

Related Classes of graphics.GraphicsQuitPoint

Copyright © 2018 www.massapicom. 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.