I am looking for a simple, domain-specific language to create vector graphics in multiple output formats (SVG, PDF...). In natural language one could create the image of a smiley with commands like this:
- draw a yellow filled circle with radius 10cm at the center (x=0,y=0)
- draw a black filled circle with radius 12mm at x=8cm, y=6cm
- draw a black filled circle with radius 12mm at x=-8cm, y=6cm
- draw an arc from -30 degree to -150 degree with radius 6cm at x=0, y=-2cm
- rotate the image by 10 degree
In a domain-specific drawing language this could be expressed as:
rotate 10°, {
circle 0,0, r=10cm, fill=black
eye(x,y) = circle x, y, 6cm, fill=black
eye 8cm, 6cm
eye -8cm, 6cm
arc -30° to -150° at y=-2cm
}
Other kinds of drawings such as grids or Koch snowflake could also be expressed with a domain specific drawing language while creating them by hand with a GUI is cumbersome.
Most important the language should be easy and allow for exchange of graphics. There are zillions of libraries for specific programming languages and professional drawing programs sure have their own scripting languages. For instance Cairo is a good low level API for drawing vector graphics. The best found so far:
- PGF/TikZ in TeX with a very steep learning curve
- OpenSCAD and RapCAD aim at 3D models only
- Logo, known from Turtle graphics
- SVG, enriched or produced by JavaScript or another programming language
- ...?
I am not familiar with CAD, maybe there is more in this direction.
