James Dunn

Results 27 comments of James Dunn

Off topic: @nevahid A change was made on Jan 26: if calling vertex with 4 or more parameters, then a call must be made to texture() first. github.com/processing/p5.js/pull/3483

The fix I posted above also works with p5 v0.9.0 Example: https://editor.p5js.org/jwdunn1/sketches/1J8asex6f

Sort of. The EasyCam library at present is coupled with the p5js renderer. Perhaps it could be decoupled at some point in the future. Meanwhile, there is the option of...

This type of global yaw rotation does not presently exist in EasyCam (or its predecessor) and would be considered a feature request. I'll leave this issue open if someone wishes...

Not yet. Perhaps NPM packaging sooner than Typescript support. I'll mark this as an enhancement.

Yes, this library is open to contributions! When you get the opportunity, feel free to fork, update, test, and create a pull request.

This type of angle limitation does not presently exist in EasyCam (or its predecessor) and would be considered a feature request. I'll leave this issue open if someone wishes to...

An EasyCam instance can be deactivated by removing the event listeners. A simple example using keys as toggles: ```javascript function keyPressed(){ if(key=='r') cam.removeMouseListeners(); if(key=='a') cam.attachMouseListeners(); } ```

Also check out [Google Drawings](https://en.wikipedia.org/wiki/Google_Drawings). In particular, the lines that connect the objects are "smart" giving great flexibility for rearranging network diagrams.

As a workaround, for both browsers, try setting the `.sidebar` class to `grid-template-rows: 20px 170px;` The 170px accounts for the original fixed height of 200px minus the header and border.