/usr/share/graphviz/gvpr
NameSizeModeActions
addedges2910644editdlrm
addranks8300644editdlrm
addrings13190644editdlrm
anon4220644editdlrm
attr1510644editdlrm
bb9970644editdlrm
bbox5320644editdlrm
binduce11660644editdlrm
bipart4550644editdlrm
chkclusters5320644editdlrm
chkedges9160644editdlrm
cliptree1780644editdlrm
col6010644editdlrm
collapse4690644editdlrm
color14400644editdlrm
cycle5600644editdlrm
dechain2640644editdlrm
deghist3510644editdlrm
deledges1160644editdlrm
delmulti3970644editdlrm
delnodes2490644editdlrm
depath5470644editdlrm
dijkstra6470644editdlrm
flatten880644editdlrm
get-layers-list2770644editdlrm
group7910644editdlrm
histogram3190644editdlrm
indent3780644editdlrm
knbhd12260644editdlrm
maxdeg3070644editdlrm
path4490644editdlrm
rotate11940644editdlrm
scale11470644editdlrm
scalexy11230644editdlrm
span1390644editdlrm
topon4290644editdlrm
treetoclust9880644editdlrm
Edit: /usr/share/graphviz/gvpr/col (601B)
# test /* color nodes using output of dijkstra */ BEG_G { double h, hn, hf, d, sat, md = maxdist; if (hue_near =="") hue_near = 0.8; if (hue_far =="") hue_far = 1.2; hn = hue_near; hf = hue_far; } # test N { d = dist; sat = (md - d + 1.0) /( md + 1.0); h = hn + ((hf - hn) * d)/md; while (h < 0.0) h = h + 1.0; while (h > 1.0) h = h - 1.0; color = sprintf("%lf %lf %lf",hue,sat,1.0); /* make sure the shape is filled */ if (!match(style,"filled")>=0) { if (style != "") style=sprintf("%s,filled",style); else style="filled"; } }