Back to project page SevenWonders.
The source code is released under:
Apache License
If you think the Android project SevenWonders 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 wave; //from w w w .ja v a2s. com // TODO: Auto-generated Javadoc /** * The Class TriangleWave. A triangle */ public class TriangleWave{ /** The id. */ int id; /** The vertex. */ VertexWave[] vertex; /** * Instantiates a new triangle wave. * * @param id the id * @param vertex the vertex */ public TriangleWave(int id, VertexWave[] vertex) { super(); this.id = id; this.vertex = vertex; } }