t-square-cli

1.2.0 • Public • Published

t-square-cli

Print the T-Square Fractal to the console!

What t-square-cli prints to the console

npm version bundle size downloads license

Why the console? Because it's the cool way.

See All Fractals in the fractals-cli project.

Usage

Via npx:

$ npx t-square-cli <n>
$ npx t-square-cli <n> [size] [options]

where n >= 0 and size >= n (if provided).

Via Global Install

$ npm install --global t-square-cli
$ t-square-cli <n>
$ t-square-cli <n> [size] [options]

where n >= 0 and size >= n (if provided).

Via Import

$ npm install t-square-cli

then:

const t_square = require('t-square-cli');
console.log(t_square.create(<n>);
console.log(t_square.create(<n>, { 
    size: <number>, 
    character: <character> 
}));

The config params are optional.

Options

Recursive Step

$ t-square-cli <n>

The first param <n> is the recursive step. <n> should be an integer greater than or equal to 0.

Examples:

$ t-square-cli 2

What t-square-cli prints to the console

$ t-square-cli 3

What t-square-cli prints to the console

Size

$ t-square-cli <n> [size]

The optional [size] param allows the T-Square fractal to be drawn at larger sizes. [size] should be an integer greater than or equal to <n>. Including size will draw a T-Square fractal of <n> recursive steps the size of a T-Square fractal with [size] recursive steps.

Example:

$ t-square-cli 2 3

What t-square-cli prints to the console

Custom Characters

$ t-square-cli <n> --character=<character>

The optional --character=<character> param will draw sqaures using the provided character. (Please provide only 1 character)

Example:

$ t-square-cli 2 3 --character=*

What t-square-cli prints to the console

By default, squares are drawn using ANSI inverse codes: \u001b[7m. To instead draw using unicode block characters, add the --blocks param (or shorthand -b).

$ t-square-cli <n> --blocks

(May look better/worse on certain terminals)

Related

Main Project

Fractal Shapes

Fractal Patterns

Space Filling Curves

License

Package Sidebar

Install

npm i t-square-cli

Weekly Downloads

1

Version

1.2.0

License

MIT

Unpacked Size

13.8 kB

Total Files

5

Last publish

Collaborators

  • spirometaxas