Jeremy Freeman
Jeremy Freeman
Currently, if a file contains multiple class definitions, and a class is specified, it will return methods for that class and also all subsequent class. We should make sure it...
All styles should be specified via key-value pairs rather than flat lists, e.g. ``` javascript var styles = { '#id' : {color: [0.0, 0.9, 0.1]}, '.class': {brightness: 2.5} } ```...
The contents of `light.js`, `shape.js`, and `element.js` should be split into separate modules `gl-scene-light`, `gl-scene-shape` and `gl-scene-element`
title says it all!
There's at least one issue with viewing the control panel on iOS/android. This issue can be a place to track it, as well as any others that we find. -...
As pointed out by @dfcreative, for some use cases it might be really useful to be able to drag the panel around the screen. Unclear whether we want to add...
The suggested default for the git repo should probably be, first, the repo name if the folder is itself a git repo, and if not, the combination of global git...
There's a python package by @emallson called `nppm` with similar interests but a different approach. https://github.com/emallson/nppm That library introduces a `npm`-like `package.json`, and seems to focus on dependency / environment...
It would be nice to add a transition option that automatically smoothly transitions between colors within each square (in the current demos, all transitions are "faked" just by doing it...
Because we handle both flat arrays and nested arrays, and both single float values and rgb triplets, there is an unavoidable ambiguity when passing something like ``` [[a,b,c],[a,b,c],[a,b,c],[a,b,c]] ``` Is...