| ZVON > Graphotron > Graphotron VCG |
| Intro / Search / ZVON |
| | graphotron | daVinci | >> vcg << | dot | tutorial | download | about | |
| Namespace: | http://zvon.org/graphotron/vcg |
| Element: | bentnearedge |
| Description: | These special edges consist of a horizontal part, a bend point and a vertical part. If an edge label is drawn, it is placed just at the bend point. Implemented is such an edge by the combination of a near edge and a normal edge. |
| Values: | empty |

|
XML Source
<source> <START1/> <END1/> <START2/> <END2/> <START3/> <END3/> <START4/> <END4/> </source> |
Graphotron Source
<graphotron xmlns:vcg="http://zvon.org/graphotron/vcg" xmlns="http://zvon.org/graphotron" > <vertex match="/*/*"> <name select="name()"/> </vertex> <edge match="/*/*" select="following-sibling::*"/> <edge match="/*/START1" select="/*/END1"> </edge> <edge match="/*/START2" select="/*/END2"> <vcg:bentnearedge/> <vcg:color>red</vcg:color> </edge> <edge match="/*/START3" select="/*/END3"> </edge> <edge match="/*/START4" select="/*/END4"> </edge> </graphotron> |