All Projects → LingDong- → fishdraw

LingDong- / fishdraw

Licence: MIT License
procedurally generated fish drawings

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to fishdraw

Mypaint
MyPaint is a simple drawing and painting program that works well with Wacom-style graphics tablets.
Stars: ✭ 2,072 (+5.55%)
Mutual labels:  art, drawing
vec
Vector graphics software to generate HPGL output to drive a plotter
Stars: ✭ 19 (-99.03%)
Mutual labels:  drawing, plotter
Godot Texture Painter
A GPU-accelerated texture painter written in Godot 3.0
Stars: ✭ 155 (-92.1%)
Mutual labels:  art, drawing
Icon Machine
Web application for randomly generating pixel art icons.
Stars: ✭ 73 (-96.28%)
Mutual labels:  art, procedural-generation
DrawBot
Repository for DrawBot. The Discord Art bot!
Stars: ✭ 11 (-99.44%)
Mutual labels:  art, drawing
Moebius
Modern ANSI & ASCII Art Editor
Stars: ✭ 138 (-92.97%)
Mutual labels:  art, drawing
Shan Shui Inf
Procedurally generated Chinese landscape painting.
Stars: ✭ 3,168 (+61.39%)
Mutual labels:  art, procedural-generation
Snek
See https://github.com/inconvergent/weir instead
Stars: ✭ 696 (-64.54%)
Mutual labels:  art, procedural-generation
procedural-art
🌌 Procedural art with vanilla JavaScript
Stars: ✭ 83 (-95.77%)
Mutual labels:  art, procedural-generation
flutter rough
A Flutter implementation of the rough.js library
Stars: ✭ 77 (-96.08%)
Mutual labels:  art, drawing
Mopaint
🎨💪 Modern, modular paint and more! (pre-alpha, not much done yet)
Stars: ✭ 50 (-97.45%)
Mutual labels:  art, drawing
pixelino
Pixel-drawing app for iOS ✍️
Stars: ✭ 45 (-97.71%)
Mutual labels:  art, drawing
Galeri Www
A perpetual artwork streaming app. (Website Repo)
Stars: ✭ 46 (-97.66%)
Mutual labels:  art, drawing
SdfFontDesigner
Offline font tuning/bitmap generation via shaders
Stars: ✭ 56 (-97.15%)
Mutual labels:  art, procedural-generation
Drawbot
Repository for DrawBot. The Discord Art bot!
Stars: ✭ 10 (-99.49%)
Mutual labels:  art, drawing
Nonflowers
Procedurally generated paintings of nonexistent flowers.
Stars: ✭ 208 (-89.4%)
Mutual labels:  art, procedural-generation
FuncMorph
Crazy figures and animations with Haskell
Stars: ✭ 30 (-98.47%)
Mutual labels:  art, drawing
Tart
Tart - draw ASCII art in the terminal with your mouse!
Stars: ✭ 296 (-84.92%)
Mutual labels:  art, drawing
MagicaVoxel File Writer
MagicaVoxel File Writer dependency free cpp class
Stars: ✭ 26 (-98.68%)
Mutual labels:  art, procedural-generation
durdraw
Animated Unicode, ANSI and ASCII Art Editor for Linux/Unix/macOS
Stars: ✭ 55 (-97.2%)
Mutual labels:  art, drawing

fishdraw

procedurally generated fish drawings. demo

  • generates all sorts of weird fishes
  • outputs polylines (supported format svg, json, csv, etc.)
  • full procedural generation, single file no dependencies
  • plotter-centric
  • export drawing animation:

usage

basic

node fishdraw.js > output.svg

specify seed (from a string), speed of drawing and output format:

node fishdraw.js --seed "Biggus fishus" --format smil --speed 2 > output.svg
  • the seed string is used as the name of the fish (printed in the drawing). If unspecified, a random pseudo-Latin name will be auto generated.
  • the speed number is used to control the speed of drawing animation. Larger the number is, faster it draws. This option works only with format smil.
  • format options: svg (regular svg), smil (animated svg), csv (each polyline on a comma-separated line) and json.

use as JS library:

const {fish,generate_params} = require('./fishdraw.js');
let polylines = fish(generate_params());
console.log(polylines);

gallery

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].