@mitchallen/pen-turtle

0.33.0 • Public • Published

@mitchallen/pen-turtle

Turtle pen drawing tool

Build Downloads Version

Buy Me a Coffee at ko-fi.com


Installation

$ npm init
$ npm install @mitchallen/pen-turtle --save

Usage

const factory = require('@mitchallen/pen-turtle');
const svgFactory = require("@mitchallen/pen-svg")

let width = 1024,
    height = 1024,
    cx = width / 2,
    cy = height / 2,
    writer = svgFactory.create({})

// create a pen

let pen1 = factory.create({
    x: cx * 1.5,
    y: cy * 1.5,
    color: 0xFF0000,    // red pen
    width: 4,           // pen width 
    alpha: 0.8          // pen alpha value
});

// create another pen

let pen2 = factory.create({
    x: cx * 0.5,
    y: cy * 0.5,
    color: 0x0000FF,    // blue pen
    width: 4,           // pen width 
    alpha: 0.8          // pen alpha value
});

let d1 = width / 4;

// put the pen down, move and turn multiple times

pen1.down();
for (let i = 0; i < 12; i++) {
    pen1
        .forward(d1)
        .turn(165)
}

let d2 = width / 5;

// put the other pen down, move and turn multiple times

pen2
    .down()
for (let i = 0; i < 5; i++) {
    pen2
        .forward(d2)
        .turn(145)
}

// add the pens to the writer

writer
    .addPen(pen1)
    .addPen(pen2)

// generate an svg and write it to a file

filename = "demo-pen-turtle.svg";

let svg = writer.writeSVG({
    width,
    height,
    filename,
});

// print the SVG markup to the screen

console.log(svg)

console.log(`\n\nOpen ${filename} in your favorite drawing program or browser.\n\n`)

Documentation

Buy me a coffee!

If you like this package and find it useful, please show your appreciation and buy me a coffee!

Buy Me a Coffee at ko-fi.com

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.33.00latest

Version History

VersionDownloads (Last 7 Days)Published
0.33.00
0.32.00
0.31.00
0.30.00
0.29.10
0.29.00
0.28.00
0.27.00
0.26.00
0.25.00
0.24.00
0.23.00
0.22.00
0.21.00
0.20.00
0.19.10
0.19.00
0.18.00
0.17.00
0.16.00
0.15.00
0.14.00
0.13.00
0.12.00
0.11.00
0.10.00
0.9.00
0.8.00
0.7.00
0.6.00
0.5.00

Package Sidebar

Install

npm i @mitchallen/pen-turtle

Weekly Downloads

0

Version

0.33.0

License

MIT

Unpacked Size

13.3 kB

Total Files

4

Last publish

Collaborators

  • mitchallen