Package org.joshy.sketch.model

Examples of org.joshy.sketch.model.SRect


    public void call(KeyEvent event) {
    }

    @Override
    protected void mousePressed(MouseEvent event, Point2D.Double cursor) {
        node = new SRect(0,0,0.0,0.0);
        node.setTranslateX(cursor.getX());
        node.setTranslateY(cursor.getY());
        node.setFillPaint(FlatColor.GRAY);
        super.mousePressed(event, cursor);
    }
View Full Code Here

TOP

Related Classes of org.joshy.sketch.model.SRect

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.