commit f916df6641aaf6b8629daf6c0116331a21882169
parent 5787963ed65a3d0a47b119f82ff26fbeb44f5bfc
Author: bkopf <vetlehaf@stud.ntnu.no>
Date: Sat, 17 Nov 2018 18:57:06 +0100
Add readme with showcase
Diffstat:
A | readme.md | | | 47 | +++++++++++++++++++++++++++++++++++++++++++++++ |
A | showcase.svg | | | 49 | +++++++++++++++++++++++++++++++++++++++++++++++++ |
2 files changed, 96 insertions(+), 0 deletions(-)
diff --git a/readme.md b/readme.md
@@ -0,0 +1,47 @@
+# asc2svg
+
+Makes this:
+
+```
+ +----------------+
+ | |<----+
+ | | |
+ +----------------+ |
+ |
+ |
+ +-----------+---------+
+ +----->| unexpected |<-+
+ | +---------------------+ |
+ | v
++-------+--------+ +----------------------+
+| Block 1 | | Additional block |
++-------+--------+ +----------+-----------+
+ | v
+ | +----------------------+
+ +--------->| Second block |
+ | +----------------------+
+ | | |
+ | | - List of stuff here |
+ | | - Good stuff too, |
+ | | I'd say |
+ | | |
+ | | |
+ | | |
+ | | |
+ | | |
+ | +----------------------+
+ |
+ |
+ v
++-----------------------+
+| SEC 1 |
++-----------------------+
+| SEC 2 |
++-----------------------+
+| SEC 3 |
++-----------------------+
+```
+
+into this:
+
+
diff --git a/showcase.svg b/showcase.svg
@@ -0,0 +1,48 @@
+<svg xmlns="http://www.w3.org/2000/svg">
+ <rect x="48" y="36" width="102.0" height="36" fill="white" stroke="black"></rect>
+ <text x="63" y="51" font-family="Arial" font-size="12" fill="black"> </text>
+ <text x="63" y="63" font-family="Arial" font-size="12" fill="black"> </text>
+
+ <rect x="180" y="108" width="132.0" height="24" fill="white" stroke="black"></rect>
+ <text x="195" y="123" font-family="Arial" font-size="12" fill="black"> unexpected </text>
+
+ <rect x="0" y="156" width="102.0" height="24" fill="white" stroke="black"></rect>
+ <text x="15" y="171" font-family="Arial" font-size="12" fill="black"> Block 1 </text>
+
+ <rect x="228" y="156" width="138.0" height="24" fill="white" stroke="black"></rect>
+ <text x="243" y="171" font-family="Arial" font-size="12" fill="black"> Additional block </text>
+
+ <rect x="228" y="204" width="138.0" height="24" fill="white" stroke="black"></rect>
+ <text x="243" y="219" font-family="Arial" font-size="12" fill="black"> Second block </text>
+
+ <rect x="228" y="228" width="138.0" height="120" fill="white" stroke="black"></rect>
+ <text x="243" y="243" font-family="Arial" font-size="12" fill="black"> </text>
+ <text x="243" y="255" font-family="Arial" font-size="12" fill="black"> - List of stuff here </text>
+ <text x="243" y="267" font-family="Arial" font-size="12" fill="black"> - Good stuff too, </text>
+ <text x="243" y="279" font-family="Arial" font-size="12" fill="black"> I'd say </text>
+ <text x="243" y="291" font-family="Arial" font-size="12" fill="black"> </text>
+ <text x="243" y="303" font-family="Arial" font-size="12" fill="black"> </text>
+ <text x="243" y="315" font-family="Arial" font-size="12" fill="black"> </text>
+ <text x="243" y="327" font-family="Arial" font-size="12" fill="black"> </text>
+ <text x="243" y="339" font-family="Arial" font-size="12" fill="black"> </text>
+
+ <rect x="0" y="396" width="144.0" height="24" fill="white" stroke="black"></rect>
+ <text x="15" y="411" font-family="Arial" font-size="12" fill="black"> SEC 1 </text>
+
+ <rect x="0" y="420" width="144.0" height="24" fill="white" stroke="black"></rect>
+ <text x="15" y="435" font-family="Arial" font-size="12" fill="black"> SEC 2 </text>
+
+ <rect x="0" y="444" width="144.0" height="24" fill="white" stroke="black"></rect>
+ <text x="15" y="459" font-family="Arial" font-size="12" fill="black"> SEC 3 </text>
+
+ <line x1="276" y1="48" x2="324" y2="48" style="stroke:rgb(0,0,0);stroke-width:1" />
+ <line x1="324" y1="48" x2="324" y2="108" style="stroke:rgb(0,0,0);stroke-width:1" />
+ <line x1="96" y1="120" x2="96" y2="156" style="stroke:rgb(0,0,0);stroke-width:1" />
+ <line x1="96" y1="120" x2="168" y2="120" style="stroke:rgb(0,0,0);stroke-width:1" />
+ <line x1="468" y1="120" x2="480" y2="120" style="stroke:rgb(0,0,0);stroke-width:1" />
+ <line x1="480" y1="120" x2="480" y2="144" style="stroke:rgb(0,0,0);stroke-width:1" />
+ <line x1="504" y1="120" x2="480" y2="120" style="stroke:rgb(0,0,0);stroke-width:1" />
+ <line x1="96" y1="192" x2="96" y2="216" style="stroke:rgb(0,0,0);stroke-width:1" />
+ <line x1="96" y1="216" x2="96" y2="384" style="stroke:rgb(0,0,0);stroke-width:1" />
+ <line x1="96" y1="216" x2="216" y2="216" style="stroke:rgb(0,0,0);stroke-width:1" />
+</svg>+
\ No newline at end of file