%PDF-1.7 GIF89;
| Server IP : 5.78.107.159 / Your IP : 216.73.216.223 Web Server : Apache System : Linux sial.sialwebvps.com 4.18.0-553.83.1.el8_10.x86_64 #1 SMP Mon Nov 10 04:22:44 EST 2025 x86_64 User : stellasp ( 1131) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/graphviz/gvpr/ |
Upload File : |
/* computes the bounding box of a graph based on node positions */
BEGIN {
double xmin, ymin, xmax, ymax;
xmin = ymin = 1.7976931348623157e+308;
xmax = ymax = -ymin;
double x, y;
}
N {
if (sscanf ($.pos, "%f,%f", &x, &y) == 2) {
if (x < xmin) xmin = x;
if (y < ymin) ymin = y;
if (x > xmax) xmax = x;
if (y > ymax) ymax = y;
}
}
END {
printf ("(%f,%f) (%f,%f)\n", xmin, ymin, xmax, ymax);
if (ARGC) printf ("area = %f aspect = %f\n", ((xmax-xmin)*(ymax-ymin))/1000000., (xmax-xmin)/(ymax-ymin));
}