| Server IP : 23.254.227.96 / Your IP : 216.73.216.183 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.1.1k System : Linux hwsrv-1277026.hostwindsdns.com 4.18.0-477.13.1.el8_8.x86_64 #1 SMP Tue May 30 14:53:41 EDT 2023 x86_64 User : viralblo ( 1001) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/graphviz/gvpr/ |
Upload File : |
/* finds node n with root attribute
* finds distance minr of closest node
* the layout is then scaled out from n so that
* a node is put on the smallest circle of radius x*minr
* containing n
*/
BEG_G {
node_t ctr;
int cx, cy;
int x, y;
double delx, dely;
int newx, newy;
node_t n;
edge_t e;
int i, sc, d, mind = -1;
double fact, newr, ang, minr;
ctr = node($,aget($,"root"));
sscanf (ctr.pos, "%d,%d", &cx, &cy);
for (e = fstedge(ctr); e; e = nxtedge(e, ctr)) {
if (e.head == ctr) n = e.tail;
else n = e.head;
sscanf (n.pos, "%d,%d", &x, &y);
d = (x-cx)*(x-cx) + (y-cy)*(y-cy);
if ((mind == -1) || (d < mind)) mind = d;
}
minr = (int)sqrt((double)mind);
}
N [$ != ctr] {
sscanf ($.pos, "%d,%d", &x, &y);
dely = y - cy;
delx = x - cx;
d = delx*delx + dely*dely;
sc = (int)sqrt((double)(d/mind));
if (sc > 1) {
fact = 2.0;
for (i=1; i<sc-1;i++) fact *= 2.0;
newr = minr*(2.0 - (1.0/fact));
ang = atan2 (dely, delx);
newx = newr*cos(ang) + cx;
newy = newr*sin(ang) + cy;
$.pos = sprintf ("%d,%d", newx, newy);
}
}