Add MiBPoV name, update README
This commit is contained in:
parent
056e673dd0
commit
6350ddabc6
@ -1,6 +1,6 @@
|
|||||||
# License
|
# License
|
||||||
|
|
||||||
Minetest Biome Point Visualizer is Copyright by (c) Wuzzy, 2023 and is released under the MIT License.
|
MiBPoV (Minetest Biome Point Visualizer) is Copyright by (c) Wuzzy, 2023 and is released under the MIT License.
|
||||||
Javascript-Voronoi is Copyright (c) by Raymond Hill, 2010-2013 and is released under the MIT License.
|
Javascript-Voronoi is Copyright (c) by Raymond Hill, 2010-2013 and is released under the MIT License.
|
||||||
|
|
||||||
## The MIT License
|
## The MIT License
|
||||||
|
10
README.md
10
README.md
@ -1,3 +1,9 @@
|
|||||||
Visualization of Minetest biome points.
|
# MiBPoV—Minetest Biome Point Visualizer
|
||||||
|
|
||||||
Voronoi implementation pulled from <https://github.com/gorhill/Javascript-Voronoi> (MIT License).
|
This is the README file for the MiBPoV code repository. MiBPov is a tool for people who develop games and mods for a Minetest. It allows them to visualize the heat and humidity points of biomes, making it easier to edit them. It is a webpage using JavaScript.
|
||||||
|
|
||||||
|
Open `index.html` in your browser to use this tool. This includes a link to the manual.
|
||||||
|
|
||||||
|
## Credits
|
||||||
|
|
||||||
|
See `LICENSE.md`.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="icon" href="./favicon.png">
|
<link rel="icon" href="./favicon.png">
|
||||||
<link rel="stylesheet" href="./dark_style.css">
|
<link rel="stylesheet" href="./dark_style.css">
|
||||||
<title>Minetest Biome Point Visualizer</title>
|
<title>MiBPoV—Minetest Biome Point Visualizer</title>
|
||||||
</style>
|
</style>
|
||||||
<!-- Include Voronoi diagram API -->
|
<!-- Include Voronoi diagram API -->
|
||||||
<script src="./rhill-voronoi-core.js"></script>
|
<script src="./rhill-voronoi-core.js"></script>
|
||||||
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1>Minetest Biome Point Visualizer</h1>
|
<h1>MiBPoV—Minetest Biome Point Visualizer</h1>
|
||||||
<div id="mainContentContainer" class="contentContainer">
|
<div id="mainContentContainer" class="contentContainer">
|
||||||
<div id="canvasContainer">
|
<div id="canvasContainer">
|
||||||
<canvas id="voronoiCanvas" width="500" height="500">
|
<canvas id="voronoiCanvas" width="500" height="500">
|
||||||
|
@ -3,15 +3,15 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="icon" href="./favicon.png">
|
<link rel="icon" href="./favicon.png">
|
||||||
<title>License of the Minetest Biome Point Visualizer</title>
|
<title>License of MiBPoV</title>
|
||||||
<link rel="stylesheet" href="./dark_style.css">
|
<link rel="stylesheet" href="./dark_style.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1>License of the Minetest Biome Point Visualizer</h1>
|
<h1>License of MiBPov</h1>
|
||||||
<div id="mainContentContainer" class="contentContainer">
|
<div id="mainContentContainer" class="contentContainer">
|
||||||
<p><a href="./index.html">Back to the main program</a></p>
|
<p><a href="./index.html">Back to the main program</a></p>
|
||||||
<p>The Minetest Biome Point Visualizer was created by Wuzzy in 2023. It uses <a href="https://github.com/gorhill/Javascript-Voronoi">Javascript-Voronoi</a> by Raymon Hill, Copyright (c) 2010-2013.</p>
|
<p>MiBPov (Minetest Biome Point Visualizer) was created by Wuzzy in 2023. It uses <a href="https://github.com/gorhill/Javascript-Voronoi">Javascript-Voronoi</a> by Raymon Hill, Copyright (c) 2010-2013.</p>
|
||||||
|
|
||||||
<p>Both programs (which includes associated files, like the manual, stylesheet, favicon etc.) are free software, released under the MIT License, written below.</p>
|
<p>Both programs (which includes associated files, like the manual, stylesheet, favicon etc.) are free software, released under the MIT License, written below.</p>
|
||||||
|
|
||||||
|
@ -8,11 +8,11 @@
|
|||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1>Manual for the Minetest Biome Point Visualizer</h1>
|
<h1>MiBPoV Manual</h1>
|
||||||
<div id="mainContentContainer" class="contentContainer">
|
<div id="mainContentContainer" class="contentContainer">
|
||||||
<p><a href="./index.html">Back to the main program</a></p>
|
<p><a href="./index.html">Back to the main program</a></p>
|
||||||
<h2>What is this?</h2>
|
<h2>What is this?</h2>
|
||||||
<p>It’s the Minetest Biome Point Visualizer, a tool for people who develop games and mods for <a href="https://minetest.net">Minetest</a>. It allows them to visualize the heat and humidity points of biomes. It works in your web browser using JavaScript.</p>
|
<p>MiBPov is the <u>Mi</u>netest <u>B</u>iome <u>Po</u>int <u>V</u>isualizer, a tool for people who develop games and mods for <a href="https://minetest.net">Minetest</a>. It allows them to visualize the heat and humidity points of biomes. It works in your web browser using JavaScript.</p>
|
||||||
|
|
||||||
<h2>Features</h2>
|
<h2>Features</h2>
|
||||||
<ul>
|
<ul>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user