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.VerletCore; // w w w .j av a 2s. co m import org.verletandroid.Graphics.IGraphics; import org.verletandroid.Graphics.IGraphics; /** * Created with IntelliJ IDEA. * User: George * Date: 28.04.13 * Time: 22:31 * To change this template use File | Settings | File Templates. */ public interface IEntity { void draw(IGraphics graphics); Vec2 getPos(); }