center canvas
This commit is contained in:
parent
55aa589355
commit
ce6a29d899
|
@ -9,6 +9,13 @@
|
||||||
body {
|
body {
|
||||||
background-color: lightgrey;
|
background-color: lightgrey;
|
||||||
}
|
}
|
||||||
|
canvas {
|
||||||
|
padding-left: 0;
|
||||||
|
padding-right: 0;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<script src="./bootstrap.js"></script>
|
<script src="./bootstrap.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
@ -37,7 +44,7 @@
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<canvas id="mapgen-canvas"></canvas>
|
<canvas id="mapgen-canvas"></canvas>
|
||||||
<div id="map-info"></div>
|
<div id="map-info" style="text-align: center"></div>
|
||||||
|
|
||||||
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
|
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
|
||||||
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
|
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
|
||||||
|
|
|
@ -23,10 +23,8 @@ const ctx = canvas.getContext('2d');
|
||||||
function newCellularAutomata() {
|
function newCellularAutomata() {
|
||||||
var seed = Date.now();
|
var seed = Date.now();
|
||||||
world = World.new_cellular_automata(width, height, seed);
|
world = World.new_cellular_automata(width, height, seed);
|
||||||
drawGrid();
|
|
||||||
drawCells();
|
|
||||||
requestAnimationFrame(renderLoop);
|
requestAnimationFrame(renderLoop);
|
||||||
infoDiv.textContent = "Cellular automata with the seed: " + seed;
|
infoDiv.textContent = "Cellular Automata with the seed: " + seed;
|
||||||
}
|
}
|
||||||
|
|
||||||
function newSimpleRooms() {
|
function newSimpleRooms() {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user