fdg-macroquad 0.4.0

The macroquad based visualizer for fdg
Documentation
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title>Force Directed Graph Examples</title>
        <script src="https://cdn.tailwindcss.com"></script>
    </head>
    <body class="flex justify-center items-center h-screen bg-slate-900">
        <div class="space-y-5 w-1/2 mx-auto p-5 text-center rounded-lg text-white">
            <h1 class="text-3xl font-bold">Force Directed Graph Examples</h1>
            <p>This site contains some simple examples that demonstrate <a class="font-bold" href="https://github.com/skylinecc/fdg">fdg</a>, a high performance force directed graph simulator written in Rust. The visualizer on this site is built using <a class="font-bold" href="https://github.com/not-fl3/macroquad">macroquad</a>.</p>
            <div class="flex">
                <ul class="mx-auto text-center font-bold space-y-3 p-3 border-solid border-2 border-white">
                    <li>
                        <a href="./nd_cube.html">4D Cube</a>
                    </li>
                    <li>
                        <a href="./binary_tree.html">Binary Tree</a>
                    </li>
                    <li>
                        <a href="./cylinder.html">Cylinder</a>
                    </li>
                    <li>
                        <a href="./json.html">JSON</a>
                    </li>
                    <li>
                        <a href="./lattice.html">Lattice</a>
                    </li>
                    <li>
                        <a href="./ring.html">Ring</a>
                    </li>
                    <li>
                        <a href="./sphere.html">Sphere</a>
                    </li>
                    <li>
                        <a href="./social_network.html">Social Network</a>
                    </li>
                </ul>
            </div>
            <p class="text-red-400">NEW: <a href="./wasmapi/basic.html" class="font-bold">try the wasm api for fdg</a></p>
        </div>
    </body>
</html>