Package org.joshy.sketch.model

Examples of org.joshy.sketch.model.SArrow


    }

    @Override
    protected void mousePressed(MouseEvent event, Point2D.Double cursor) {
        cursor = snapPoint(cursor);
        node = new SArrow(cursor,cursor);
        node.setStrokeWidth(3);
        node.setFillPaint(FlatColor.BLACK);
        context.getDocument().getCurrentPage().add(node);
        context.getUndoManager().pushAction(new UndoableAddNodeAction(context,node,"arrow"));
        context.redraw();
View Full Code Here

TOP

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

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.