Today I downloaded the most recent version (r178) of threeJS and I found a problem with addon class RoundedBoxGeometry which didn’t show up in previous versions. One can see it here (look at the tiles of the puzzle):
So, I kindly ask if the above-mentioned problem is due to some bug in RoundedBoxGeometry.js or if I need to make some changes in the code of the puzzle in order to adapt it to this (and to future) versions of threeJS.
It looks fine with version r177 and, I as wrote before, if in line 73 of file RoundedBoxGeometry.js one replaces super( width, height, depth, etc. ); with super ( 1, 1, 1, etc. ); (similar to previous versions of this class).
Looks like the super( constructor originally took 1,1,1 and then later roundrect deformed the vertices.. but that change is passing width/height/depth to the constructor instead?