Michael Casebolt
Michael Casebolt
I think we can deprecate 'chain' and add an equivalent 'compose' method with no side-effects. This should be documented better.
The math is actually "wrong", it's off by .05% https://www.wolframalpha.com/input/?i=0.5+*+(-(2)%5E(-10+*+(k+-+1))+%2B+2)+for+k+%3D+2 Likewise there is a jump at the beginning. One solution is to stretch the function about 0.5 so that the...
I am fine with the underscore convention for private variables.
I found the same issue and made a test file: https://gist.github.com/mikebolt/c596d5ac9a101071ef13c1bb80c8d8ca The code in the arrow function in foo is formatted incorrectly, but the code in the arrow function in...
OK, it should be fixed now. I reverted to your last commit, and kept my recent commits in the "experimental" branch. The project worked locally, but I didn't keep it...
Also, the codepens are broken in Firefox when accessing codepen via https if you have tracking protection turned on, due to the "mixed active content" policy. I think that omitting...
I figured out what was wrong, at least for me: the script wasn't loading. It needed to be accessed through https instead of http. This was the error: ``` Blocked...
OK, I fixed that. Check it out here: http://codepen.io/anon/pen/mPJBYj . It relies on google-cube-code.js now. The cube doesn't resize automatically anymore because I changed something in the google-cube-code.js when I...
Alright, I updated the gcube.min.js. The codepens are definitely broken now, because gcube.css needs to be included in the head. Also the cubes are smaller like I mentioned.
Here's what I know: You definitely need to remove the following line from google-cube-code.js: ``` this.setSize( 400, 200 ); ``` At that point the div with class 'cube' will dynamically...