Package org.gbcpainter.game.model.grid

Examples of org.gbcpainter.game.model.grid.OpaqueRandomFace


          final Point junctionPosition = lastJunction.getPosition();
          faceShape.lineTo( junctionPosition.x, junctionPosition.y );
        }
      }

      faces.put( new OpaqueRandomFace( faceShape ), faceAndId.getValue() );
    }

    this.levelBounds = makeBoundRectangle( level.getMap() );
  }
View Full Code Here


          final Point junctionPosition = lastJunction.getPosition();
          faceShape.lineTo( junctionPosition.x, junctionPosition.y );
        }
        faceShape.closePath();

        faces.put( new OpaqueRandomFace( faceShape ), faceAndId.getValue() );
      }
      return true;
    } catch ( Exception e ) {
      this.faces = null;
      return false;
View Full Code Here

TOP

Related Classes of org.gbcpainter.game.model.grid.OpaqueRandomFace

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.