Flat, round, designer-friendly pseudo-3D engine for canvas & SVG
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add JSON export support to the new Horn shape.

+6
+6
js/horn.js
··· 26 26 updateSort: true, 27 27 }); 28 28 29 + HornGroup.type = 'HornGroup'; 30 + 29 31 HornGroup.prototype.create = function() { 30 32 Group.prototype.create.apply( this, arguments ); 31 33 ··· 161 163 162 164 var HornCap = Shape.subclass(); 163 165 166 + HornCap.type = 'HornCap'; 167 + 164 168 HornCap.prototype.copyGraph = noop; 165 169 166 170 // ----- Horn ----- // ··· 172 176 frontFace: undefined, 173 177 fill: true, 174 178 }); 179 + 180 + Horn.type = 'Horn'; 175 181 176 182 var TAU = utils.TAU; 177 183