Package org.locationtech.udig.project.ui.internal.commands.draw

Examples of org.locationtech.udig.project.ui.internal.commands.draw.TranslateCommand


     * @param offset The amount of translation
     * @return a new TranslateCommand object
     * @see TranslateCommand
     */
    public TranslateCommand createTranslateCommand( Point offset ) {
        return new TranslateCommand(offset);
    }
View Full Code Here


     * @param y the amount of y translation
     * @return a new {@linkplain TranslateCommand}
     * @see TranslateCommand
     */
    public TranslateCommand createTranslateCommand( int x, int y ) {
        return new TranslateCommand(x, y);
    }
View Full Code Here

TOP

Related Classes of org.locationtech.udig.project.ui.internal.commands.draw.TranslateCommand

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.