Home / Blog Menu ↓

Blog: #plotdevice

23 posts / tag feed / about the blog / archive / tags

Egyptian uniliterals chart

I’ve missed doing language charts, so I put together one of the Egyptian uniliterals:

EgyptianUniliteralsChart.png

To go along with it, I’ve also made some worksheets, intended to be printed and filled out:

EgyptianUniliteralsWorksheet-Graded.png

The graded worksheet is a new idea I had, to gradually introduce new characters over the course of the worksheet. Both my wife and I worked through it and by the end we both felt fairly confident in our newfound knowledge of the uniliterals.

Oh, and I made all of these in PlotDevice. It’s quite handy, especially for the worksheets where I’m generating the contents programmatically.


Reply via email or office hours

More PlotDevice experiments

I’ve been playing around with PlotDevice more, and yes, it is awesome. For example, I can quite easily create something like my Latin declension charts programmatically:

plotdevice-latin.png

As you can see, I’m taking a simple list of words with brackets around the endings and displaying it, styling the endings using PlotDevice’s stylesheet functionality (lines 11 and 15–16). Super easy.

It’s also great for trying out design ideas that would take much longer to prototype in Illustrator, like fan charts for genealogical purposes:

plotdevice-fanchart.png

Using that code, which took me less than twenty minutes to write, I can easily try out as many sizing/spacing variations as I want, and the output is high-quality PDF. This is slick.

So yes, I will be using this a lot more lately.


Reply via email or office hours

PlotDevice

I recently came across PlotDevice, a Python-based graphics environment for Mac, similar to Processing and NodeBox. I don’t know why I didn’t think of this before with Processing, but it dawned on me that PlotDevice would be perfect for prototyping some of the design experiments I do. For example, it took around fifteen minutes to write some quick code to draw genealogy sparklines (code):

sparkline.png

For this sample, I have a draw_sparkline function that takes an object with a name, birth/death dates, list of marriages, and list of children, and it handles the drawing. Much easier than copying and pasting and tweaking in Illustrator or InDesign.

PlotDevice is vector-based (rather than raster) and exports to PDF, which means output is high quality and not limited to pixel resolution (e.g., I can create very fine hairlines).

I’m hooked. The only semi-important downside for me right now is that it doesn’t have OpenType features or tracking/kerning controls for text, but it looks like both are coming soon.

For fun, a watersun emblem (code), based off some code in the PlotDevice geometry tutorial:

watersun.png

Thanks to Tod Robbins for the heads up about PlotDevice.


Reply via email or office hours