UNPKG

p5.wrapper

Version:

A lightweight declarative wrapper for p5.js that lets you build interactive sketches using Web Components or frameworks like Zikojs, React, VanJS...

12 lines 237 B
import { ZikoP5Shape } from "../shape.js"; class ZikoP5Shape3D extends ZikoP5Shape{ constructor(x, y, z){ super(x, y); Object.assign(this.cache,{ z }) } } export{ ZikoP5Shape3D }