Back to project page hiddenmarble.
The source code is released under:
Apache License
If you think the Android project hiddenmarble 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 com.mygdx.hiddenmarble.entities; /* w ww.j a va2s .c om*/ import com.badlogic.gdx.math.Vector2; /** * Maze fixture definitions. Fixture dimensions are omitted since all maze * fixtures other than the sensor are always 1 x 1 in Box2D meters. The * dimensions of the sensor can be deduced from the dimensions of the maze. */ public class MazeFixtureDef { public final Vector2 center; public final boolean isCorner; public final boolean isSensor; public MazeFixtureDef(Vector2 center, boolean isCorner, boolean isSensor) { this.center = center; this.isCorner = isCorner; this.isSensor = isSensor; } }