1.0.1 • Published 4 months ago

@code-not-art/sketch v1.0.1

Weekly downloads
-
License
GPL-3.0-or-later
Repository
github
Last release
4 months ago

Code and Contributions License NPM Version Language: TypeScript

Sketch Framework

Framework used to create generative art using pseudo-random and parametric algorithms. This library provides a hot reloading canvas to simplify developer workflow for art development. This is the developer interface for creating art using the tools provided by the @code-not-art/core canvas drawing library.

This code base provides a demo environment usable for art development, but it is intended to produce an NPM package with all the React UI components to embed a Sketch into any React based applicaiton. This it is used as the foundation for @code-not-art/template which provides a blank canvas to easily make your own generative works. If you are looking to write some code that makes some art, start there instead.

Running the Demo (Quick Start)

This repository is managed with pnpm. The following commands will probably work with your preferred package manager (by replacing pnpm in these commands with npm or yarn, as you prefer.

Note for Contributers: If submitting changes with with updated dependencies, please install these with pnpm and provide the generated updates for the pnpm-lock.yaml file.

  1. Clone to your computer - How To

  2. Install dependencies with pnpm:

    pnpm i
  3. Start development server:

    pnpm start

    The server will run on localhost:1234.

  4. The page will render the sketch defined in src/demos/basic.ts. Open this file your editor of choice and write your sketch there. The server will watch for changes to the file, drawing to the canvas on the browser whenever you save your work.

Other demo sketches to play with are in that demos folder, but need to be imported into src/demo.tsx and passed as a prop into the App element.

Sketch Interface and Controls

KeyAction
sSave the current image
uShareable image URL - Create a shareable URL and copy that link to your clipboard
mShow/Hide Parameter Menu
spaceDraw new image with random image and color seeds.
Move to next color seed, or generate a new one if at end of list. Draw new image.
Move to previous color seed. Draw new image.
Move to next image seed, or generate a new one if at end of list. Draw new image.
Move to previous image seed. Draw new image.
cGenerate new color seed. Draw new image.
iGenerate new image seed. Draw new image.

The Sketch Interface (AKA. writing your sketch)

The canvas expects a prop of the Sketch type. This interface allows you to provide configuration details for your sketch (config), and interactable parameters that you can update in browser (params). There are several methods for available for you to implement that will interact with the canvas and the seeded random generators provided by the framework. The only one of these that are absolutely required to provide is the draw(props) method, all others have sensible (mostly empty) defaults.

Alt text

PropertyTypeRequiredDescriptionDefault
configJSON matching type ConfigInputNoConfigure image and project properties such as canvas size.Image size: 1080x1080Color and Palette seeds: Random Seeds based on current date and timeFrameRate: 60
paramsAn array of Param objects.NoAdds to the browser menu list of adjustable parameters that control the sketch.No interactive parameters
init(props)Function providing SketchPropsNoRuns when sketch is first passed to the Canvas allowing for expensive up front work to be done once and not repeated when new images are generated.No operations performed.
reset(props)Function providing SketchPropsNoRuns when user requests a new image to be drawn. Use this to reset any data as needed between draws.Clears the canvas back to empty (all transparent).
draw(props)Function providing SketchPropsYesThe main drawing actions of the sketch. This will be run once whenever a user requests a new image to be generated.-
loop(props, frameData)Function providing SketchProps and FrameData.NoWill be called every frame of the animation loop controlled by the page. The framerate will attempt to match the value specified in config. The loop will stop once this function returns true (indicating the animation has finished).No operations performed.

SketchProps

The SketchProps are provided provided to every function in the Sketch definition. They provide access to the Canvas, and to the seeded Random generators. The full list of properties available and links to their code or documentation is:

PropertyTypeDescription
canvas@code-not-art/core.CanvasProvides access to the canvas and 2D context directly, plus all the drawing tools provided by the code-not-art core library.
rng@code-not-art/core.RandomRandom number generator provided the image seed
palettePaletteRandom Color Palette with 5 randomly selected colors. Changing the color seed will update the colors in the palette without affecting the random seed of the rng Random generator provided in the SketchProps
paramsStringMap<any>The values for the parameters provided in the sketch definition. If these are updated in the UI then this params object will have the updated values.
1.0.1

4 months ago

1.0.0

4 months ago

0.11.0

8 months ago

0.10.0

11 months ago

0.9.5

11 months ago

0.9.3

1 year ago

0.9.2

1 year ago

0.9.1

1 year ago

0.8.2

1 year ago

0.9.0

2 years ago

0.8.1

2 years ago

0.8.0

2 years ago

0.7.1

2 years ago

0.7.0

2 years ago

0.5.0

3 years ago

0.6.0

3 years ago

0.5.1

3 years ago

0.3.0

3 years ago

0.4.1

3 years ago

0.4.0

3 years ago

0.3.1

3 years ago

0.2.3

3 years ago

0.2.1

3 years ago

0.2.2

3 years ago

0.2.0

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago