Quantcast
Channel: Raspberry Pi Forums
Viewing all articles
Browse latest Browse all 4861

Other programming languages • Re: JavaScript graph library, for embedding and drawing planar graphs in 2D and/or sphere surface

$
0
0
Port to JSCAD is complete, and animation slider allows to nicely see the changes for different Tutte embedding (black bottom) scale factors for stereosgraphic projection onto sphere:
Image


You get to this view by selecting a graph, and clicking on "stereographic projection" button on this page:
https://hermann-sw.github.io/planar_graph_playground/
Peek_2024-09-15_20-45.gif

It was really easy to pass the graph and coordinates of Tutte embedding from HTML page to JSCAD app:
  • I stored needed constant part of script in multiline string (template literal) "jscad" in HTML page
    https://github.com/Hermann-SW/planar_gr ... js#L8-L227
  • When the SVG has been created, the parameters are stored in variable "params":
    https://github.com/Hermann-SW/planar_gr ... #L341-L344

    Code:

            params = "coords = " + JSON.stringify(coords_) + "\n" +                 "adj = " + JSON.stringify(to_adjacency_lists(G)) + "\n";
  • the transfer to jscad.app is done with button's onclick method, into browser tab:

    Code:

    javascript:window.open('https:///jscad.app/#data:application/json,'+encodeURIComponent(params+jscad),'_spherical_embedding')

Quite some progress, now need to think how to get a "Tutte like" equilibrium on sphere. Perhaps by flipping the edges that do not break planarity (eg. topmost edges) from "spherical circle" (etype=3) arc to "great circle arc" (etype=2).

The very first graph mp7 is example for an edge that needs etype=3:
Screenshot from 2024-09-15 22-10-11.png

With etype=2 the edge produces an edge crossing ...
Screenshot from 2024-09-15 22-11-49.png

Statistics: Posted by HermannSW — Sun Sep 15, 2024 8:17 pm



Viewing all articles
Browse latest Browse all 4861

Trending Articles