Back to project page Verlet.
The source code is released under:
Copyright 2013 Devicement http://devicement.com/ Copyright 2013 Sub Protocol and other contributors http://subprotocol.com/ Permission is hereby granted, free of charge, to any person obtaining a co...
If you think the Android project Verlet listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.verletandroid.Graphics; // ww w. java 2 s. co m /** * Created with IntelliJ IDEA. * User: George * Date: 28.04.13 * Time: 15:27 * To change this template use File | Settings | File Templates. */ public interface IPixmap { public int getWidth(); public int getHeight(); public PixmapFormat getFormat(); public void dispose(); }