Tag Archives: AxiDraw

The AxiDraw MiniKit 2

AxiDraw MiniKit 2

Today we are introducing a major refresh of the smallest member of the AxiDraw family of pen plotters: the new AxiDraw MiniKit 2. The AxiDraw MiniKit 2 is our special compact DIY-kit version of the AxiDraw lineup.

AxiDraw MiniKit 2

Versus the original AxiDraw MiniKit, the MiniKit 2 has been redesigned for easier assembly, better precision, and higher performance. The key change is that the long linear rail that forms the base of the machine — a custom aluminum extrusion in the original — has been replaced with a solid bar of 6061-T6 aluminum, machined in the same precision process as our top-of-the-line AxiDraw SE/A3, and then anodized to a satin-silver finish. This change simplifies a number of the assembly steps, but more importantly has a cleaner overall look and tighter manufacturing tolerances for improved precision.

AxiDraw MiniKit
In addition to be being “Mini”, the MiniKit 2 is also still a kit.

Unlike other models of the AxiDraw family like AxiDraw V3 and AxiDraw SE/A3 (which come assembled, tested, and ready to use), the AxiDraw MiniKit 2 is a machine that you assemble yourself.

We’ve taken great care in designing a kit that is rewarding to build, own, and use.

AxiDraw MiniKit

The new version is also heavier than the old one, which helps it to stay stable on your desk at higher speeds and gives it a small boost in effective speed, in addition to the upgrades in precision. Small but sturdy, The MiniKit 2 is built with machined parts, just one custom aluminum extrusion now, attention to detail, and care.

The AxiDraw MiniKit

AxiDraw MiniKit

Today we are introducing a brand new member of the AxiDraw family of pen plotters: the AxiDraw MiniKit.

AxiDraw MiniKit
The AxiDraw MiniKit is a special compact addition to the AxiDraw lineup.

Designed for lighter-duty applications, It takes up less desk space and less storage space. With a plotting area of just 6 × 4 inches (150 × 100 mm), it’s small enough to take with you, or to fit into places where bigger machines can’t.

AxiDraw MiniKit
In addition to be being “Mini”, it is also a kit.

Unlike other models of the AxiDraw family like AxiDraw V3 and AxiDraw SE/A3 (which come assembled, tested, and ready to use), the AxiDraw MiniKit is a machine that you assemble yourself.

We’ve taken great care in designing a kit that is rewarding to build and to own.

AxiDraw MiniKit

And of course, it’s an AxiDraw, and performs like one. Small but sturdy, it’s built with custom aluminum extrusions, machined parts, attention to detail, and care.

Featured artist: Michael Fogleman

Drawing of lots of small coils titled Spiral Galaxies

Michael Fogleman is an active member of the plotter art community. His twitter feed often contains either new art, or links to new tools that he has made.

He has created and shared some incredible resources, including a wide variety of vector art tools and even an alternate Python library for AxiDraw.

Drawing of a protein diagram displayed at the Plotter People Meetup

I am a fan of science as an art subject, and Michael’s protein ribbon diagram drawings are a great example. A ribbon diagram depicts the 3D structure of the protein as well as the common secondary structures of helixes, strands, and coils.

In addition to making the drawings, he has a twitter bot that publishes ribbon diagrams and has published the code for the project. This ribbon diagram was one that we got to see at the Plotter People meetup in San Francisco.

Drawing of Galaga

Michael hits another of my weaknesses, vintage gaming with his NES Sparklines drawings.

For these drawings, I use an NES emulator (of my own creation) to record a snapshot of the Nintendo’s RAM at each frame (60 fps). The NES only had 2048 bytes of RAM. For each address in memory, I plot its values over time as an individual sparkline. I only show addresses that changed at least once, so there are usually fewer than 2048 sparklines. Because each game developer used the memory in different ways, each game produces its own unique look when plotted.

MOS 6502 processor drawing

He also plotted something dear to our hearts (and close to the heart of the NES), the MOS 6502 processor.


Topographic map of Mount St. Helens

One subject that I’ve often thought appropriate for plotting are maps, and Michael’s topographic maps are elegant. Again, in addition to making drawings, he has provided his code for working with AWS terrain data as well.


Drawings of the Stanford bunny

Michael sells drawings, and accepts commissions for favorite NES games, proteins, map regions, and even cellular automata. He has projects on wide ranging subjects, not limited to pen plotters, so go check them out!

Stroke fonts from Quantum Enterprises

One of the features in our new Hershey Text v 3.0 software is the ability to extend it with new fonts.

One company, Quantum Enterprises, is already selling high quality stroke fonts that are compatible with the new Hershey Text, and ideal for use with the AxiDraw.

Their fonts are available in matched pairs: A TrueType (outline) font and a single-stroke SVG stroke font. The TrueType font works as a regular computer font, which you can use to lay out and edit text on your page. Hershey Text then performs automatic font substitution replacing the text in place with the matching stroke font.

Here is a sample of what one of their regular (TrueType) handwriting-like fonts looks like, as laid out on the page within Inkscape:

And, here is how that same text looks once rendered with Hershey Text into its single-stroke SVG font version:

The single-stroke text comprises a set of paths ideally suited to be traced with a pen. And finally, here is how that stroke text looks as plotted with the AxiDraw:

These new stroke font pairs, as well as custom fonts, are available to purchase directly from Quantum Enterprises.

An especially neat feature of these fonts is that they can work with the Quantum Enterprises Scriptalizer character substitution software — now available directly integrated within a special version the AxiDraw software. This software performs automatic substitution between different letter forms (glyphs) for the same character, making plotted text look more like handwriting.

The AxiDraw CLI and Python API

Following the release of our new AxiDraw software this week, we are pleased to announce the release of two additional software components that greatly extend the capability of the machine.

The AxiDraw software is now available in two alternate versions that may be helpful for developers or for anyone who would like to control the machine programmatically rather than through Inkscape: A stand-alone command-line interface (CLI) tool, as well as a full-featured Python library.

The AxiDraw CLI

The first new tool is the AxiDraw CLI,  a command-line API to drive the AxiDraw outside of Inkscape. Like the Inkscape-based software, its primary function is to plot SVG files. However, it is a stand-alone utility that can be driven from within shell scripts and other environments that make use of shell commands.

Once installed, plotting a file can be as simple as executing the following command:

axicli filename.svg

There are, of course, a breadth of different modes and configuration parameters available. We have written detailed descriptions of each of these options in our comprehensive API documentation. The CLI also supports the use of configuration files to quickly switch between different sets of parameters.

Since most common scripting and programming environments allow one to call shell commands like this, that allows the AxiDraw to be used directly within a wide variety of frameworks.

 

The Python API

The second new tool is the AxiDraw Python API. The AxiDraw CLI is written within Python, and we have both exposed and expanded upon that nucleus to create a flexible and powerful Python module, complete with its own comprehensive documentation.

Just like the CLI, the Python API can plot SVG documents; it can both read SVG files and accept strings containing SVG data.

It also has features that are not available within Inkscape or the CLI: It supports direct interactive XY control. You can use absolute or relative moveto/lineto type commands to control the AxiDraw from within your own programs. This is particularly useful for a wide variety of potential AxiDraw applications that are not writing or drawing, but otherwise making use of the AxiDraw as a low-cost motion control platform.

Hershey Text v 3.0

Some years ago we wrote a neat little Inkscape extension called Hershey Text. Hershey text could take a little bit of text that you would type and render it into stroke fonts, also known as engraving fonts.

We are very pleased this week to release an all-new version of Hershey Text, written from scratch, and far more useful, capable, and extensible. We have a comprehensive user guide for it as well.

Hershey Text v 3.0 will be bundled into future versions of Inkscape, but it’s also included with the new AxiDraw software and available on its own for download today.

Continue reading Hershey Text v 3.0

New AxiDraw Software v 2.5

We’re pleased to announce the release of the latest version of the AxiDraw software, 2.5. which includes a number of frequently-requested features that we’ve been working on over the last year.

An expanded user guide

Perhaps foremost, we have updated and greatly expanded the PDF AxiDraw user guide, which covers how to use the AxiDraw, including every part of the software. In addition to sections that go over the new features, we have thoroughly revised the rest, including a larger and clearer section on getting started.

A new SVG optimization tool

In normal use, the AxiDraw software plots elements in the same order that they occur in the file. However, depending on how your file was generated, that may not be the most efficient way to do things. If the order of the elements in the file is poor enough, the plot time can actually be dominated not by writing and drawing time, but by pen-up movements (illustrated here in red) between objects.

We’ve written a new SVG ordering utility, that can sorting of objects in an SVG document, re-ordering them as needed to reduce pen-up travel. It’s also a layer-aware and group-aware sorting tool, that can process a full document and reorder elements on each layer of the document and either respect or break apart other groups in your document. This tool is available in two versions: An individual Inkscape extension as well as an integrated version that you can use automatically within the AxiDraw software.

Better support for using multiple machines

The new AxiDraw software supports assigning names to individual AxiDraw units over USB, which you can use as semi-permanent labels when printing to a particular machine. You can also now plot to a specific AxiDraw, or simultaneously plot the same document to a number of connected machines.

A new version of Hershey Text

This release includes an all-new version of Hershey Text, our software for creating stroke-based text within Inkscape. You can about the new features in our blog post announcing it.

And more!

Amongst other improvements in the new software are the following:

  • Updated to use Inkscape 0.92
  • Paths in the document are now clipped gracefully and precisely at the boundaries of both the artboard (drawing canvas) and machine travel.
  • Supports more SVG object and layout types natively
  • Faster plotting on paths with very high vertex density
  • Online version check added
  • Improves behavior of Hatch Fill extension
  • Bug fixes galore

We recommend this new version to all AxiDraw users; you can download it for Mac, Windows, or Linux, following our guide here.

Featured artist: Sash Zats

Sash Zats is a designer and generative artist working with AxiDraw. You can find him on instagram and twitter. One of the things about Sash’s work that I enjoy is his choices of materials. He often uses bold papers and subtle pen colors to bring his designs to life.

The sun and the moon

The Sun and the Moon are a compelling pair of drawings with gold and silver ink on black. The rich texture of the overlapping lines almost looks like textile work rather than ink.

maps on white

In describing these map drawings, Sash says:

For my dad’s 65th birthday I plotted places that are significant for our family.

maps on black

Continuing in the tradition of tool sharing that we have seen in generative artists, Sash included information about how he created the drawings, starting with calculating tile indices from coordinate bounds, parsing vector tiles protocol buffers, and converting to vectors before plotting with the AxiDraw.

Manhattan drawing

In a similar vein, this drawing of Manhattan buildings, blocks and neighborhood used data from NYC OpenData. Sash outlined his process for this one:

• data from NYC OpenData using httpie to filter unrelated data with
• process using #swift Xcode Playgrounds
• generate 3D geometry using #SceneKit
• export to .stl (.dae crashes #blender)
• export to SVG using Freestyle SVG to maintain occlusion
Svg Spatial Sort to optimise SVG for faster plotting
• plot using #axidraw v3 plotter

He published his Manhattan model as well.

Penrose tiling

Sash posted this Interrupted Penrose tiling with a link to Penrose’s lecture on tiling.

Anatomical heart of triangles

Delaunay triangulation is a familiar tool for generative artists, and is used in a series of drawings, including this anatomical heart drawn in white on bold red paper.

Drawing of a protein

The last picture I want to share is of the protein 5B0R, which Sash says, “when plotted looks like a badass graffiti.” I enjoy seeing science as an inspiration for art, and while I’ve seen a couple of artists plot proteins, the combination of the teal paper and light ink on this one give it a completely different perspective.

Thank you, Sash, for sharing your photos and processes! You can find more of his work, including videos of the drawing process on instagram and twitter.

Featured artist: Sam Norton

There is a lively community of plotter enthusiasts in the drawingbots discord channel. One of those is Sam Norton, who goes by hurtle there.

Sam has been using the AxiDraw to paint with acrylics using WaterColorBot software.

a useful, but fairly unsuccessful little sunday morning plot to see how much detail would come across on a small picture.

tried again but a bit bigger, and possibly chose a better range of paint colours.

The discord has channels for works in progress, process discussions, as well as a gallery. This encourages the community to share works at various stages as well as early drafts or versions. These two paintings of the same subject have different palettes and sizes and give insight into the process.

Sam’s website features many of his hand paintings, and it is fascinating to see that he has taken some of the same subject matter and revisited it with the AxiDraw.

He has taken the same set of glasses and experimented both with paints and dipped india ink.

It’s fun to see how the same subject looks, not just with hand painted vs. AxiDraw, but also with different media. The ink behaves differently and the dipping process is so much fun to watch.

This chair is another example. The scale of these is quite different as well. The original is about 70 x 80 cm and the AxiDraw version is 25 x 35 cm. I enjoy the contrast in texture, precision and technique.

I will look forward to seeing more of Sam’s work, as the textures are fascinating, and the process of converting photographs to vector art is complicated by the added dimension of the paint palette. I’ll leave you with this closeup of the piece from the top of this article, which was taken by our previously featured artist, Bleeptrack, who received the piece through the drawingbots plotswap.

Thank you to Sam for generously sharing your photos and video clips!

AxiDraw in the Classroom

One of the places we love to see the AxiDraw is in educational settings. It can be used as an introductory tool for digital fabrication, it can be used for learning to code, and it can be used for exploring design or mathematics.

Saskia Freeke posted a beautiful series of 3D cube plots as well as link to her published processing sketches. She’ll be teaching with the School of Machines, Making and Make-Believe in Berlin this summer.

Julien Gachadoat also posted about using Processing. Shown above are
“Prints made by design students (L2) at Université Bordeaux Montaigne for the last course of the year on generative systems.”

Kris Swanson posted about using a Tinkercad to Inkscape workflow for AxiDraw for student projects.

Andrew Carle posted yet another workflow, using Beetle Blocks to AxiDraw. The plots above were made by his g10 math students.

If you’re using AxiDraw in the classroom or know of other resources for educators using AxiDraw, please post in the comments or send us a note! We’d love to hear how you’re using it and what tools you use.