hilbert-curve-cli

1.3.0 • Public • Published

hilbert-curve-cli

Print the Hilbert Curve to the console!

What hilbert-curve-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 hilbert-curve-cli <n>
$ npx hilbert-curve-cli <n> [options]

where n >= 1.

Via Global Install

$ npm install --global hilbert-curve-cli
$ hilbert-curve-cli <n>
$ hilbert-curve-cli <n> [options]

where n >= 1.

Via Import

$ npm install hilbert-curve-cli

then:

const hilbert_curve = require('hilbert-curve-cli');
console.log(hilbert_curve.create(<n>);
console.log(hilbert_curve.create(<n>, { 
    rotation: <left|right|flip|standard>,
    line: <bold|double|standard> 
});

The config params are optional.

Options

Recursive Step

$ hilbert-curve-cli <n>

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

Examples:

$ hilbert-curve-cli 4

What hilbert-curve-cli prints to the console

$ hilbert-curve-cli 5

What hilbert-curve-cli prints to the console

Rotation

$ hilbert-curve-cli <n> --rotate=<left|right|flip|standard>

The optional --rotate param rotates the Hilbert Curve. Supported values:

  • left: Rotate left 90 degrees
  • right: Rotate right 90 degrees
  • flip: Rotate 180 degrees
  • standard: No rotation (default)

Example:

$ hilbert-curve-cli 5 --rotate=right

What hilbert-curve-cli prints to the console

$ hilbert-curve-cli 5 --rotate=flip

What hilbert-curve-cli prints to the console

$ hilbert-curve-cli 5 --rotate=left

What hilbert-curve-cli prints to the console

Line Type

$ hilbert-curve-cli <n> --line=<bold|double|standard>

The optional --line param draws the Hilbert Curve using different line types. Supported values:

  • bold: Draw using bold lines
  • double: Draw using double lines
  • standard: Draw using standard lines (default)

Examples:

$ hilbert-curve-cli 5 --line=bold

What hilbert-curve-cli prints to the console

$ hilbert-curve-cli 5 --line=double

What hilbert-curve-cli prints to the console

Related

Main Project

Fractal Shapes

Fractal Patterns

Space Filling Curves

License

Package Sidebar

Install

npm i hilbert-curve-cli

Weekly Downloads

2

Version

1.3.0

License

MIT

Unpacked Size

19.7 kB

Total Files

5

Last publish

Collaborators

  • spirometaxas