14 lines
481 B
Plaintext
14 lines
481 B
Plaintext
<svg viewBox="0 0 @ObjW @ObjH" width="100%" height="100%" xmlns="http://www.w3.org/2000/svg">
|
|
<polygon points="@poliPoints" style="@BlockStyle" />
|
|
@if(showLines)
|
|
{
|
|
foreach (var currLine in line2Draw)
|
|
{
|
|
<polyline points="@currLine.Key" stroke="@currLine.Value" fill="none" stroke-width="@StrokeWidth" />
|
|
}
|
|
}
|
|
<text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" style="@TextStyle">@StepText</text>
|
|
</svg>
|
|
|
|
|