| ZVON > Graphotron > Graphotron daVinci |
| Intro / Search / ZVON |
| | graphotron | >> daVinci << | vcg | dot | tutorial | download | about | |
| Namespace: | http://zvon.org/graphotron/daVinci |
| Element: | HEAD |
| Description: | daVinci will draw a little image at no, one or both ends of an edge. This behaviour is controlled with the attribute "_DIR". With HEAD you can define which image this should be, a leading 'f' means filled |
| Values: |
farrow
arrow
fcircle
circle
|

|
XML Source
<source> <START1/> <END1/> <START2/> <END2/> <START3/> <END3/> <START4/> <END4/> </source> |
Graphotron Source
<graphotron xmlns:daVinci="http://zvon.org/graphotron/daVinci" xmlns="http://zvon.org/graphotron" > <vertex match="/*/*"> <name select="name()"/> </vertex> <edge match="/*/START1" select="/*/END1"> <daVinci:HEAD>farrow</daVinci:HEAD> </edge> <edge match="/*/START2" select="/*/END2"> <daVinci:HEAD>arrow</daVinci:HEAD> </edge> <edge match="/*/START3" select="/*/END3"> <daVinci:HEAD>fcircle</daVinci:HEAD> </edge> <edge match="/*/START4" select="/*/END4"> <daVinci:HEAD>circle</daVinci:HEAD> </edge> </graphotron> |