Package org.yajsdl.geom

Examples of org.yajsdl.geom.Rect


    /**
     *
     */
    public boolean blit(Surface src, int width, int height) {
        Rect src_rect = new Rect( 0, 0, width, height );

        return baseBlitSurface( src, src_rect, new Rect() );
    }
View Full Code Here


    /**
     *
     */
    public boolean blit(int x, int y, Surface src, int width, int height) {
        Rect dst_rect = new Rect( x, y, 0, 0 );
        Rect src_rect = new Rect( 0, 0, width, height );

        return baseBlitSurface( src, src_rect, dst_rect );
    }
View Full Code Here

TOP

Related Classes of org.yajsdl.geom.Rect

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.