• Z
    [docs] Added skeleton methods for · 267583f3
    zz85 提交于
    THREE.Path
    THREE.Shape
    THREE.CurvePath
    THREE.Curve
    THREE.SubdivisionModifier
    THREE.ExtrudeGeometry
    
    @sole you might be interested in the script i used to help generate this.
    
    p = new THREE.Path()
    for (i in p) {
    p.hasOwnProperty(i) && console.log('\n<h3>.' + i + '</h3>');
    }
    
    console.log('-------------')
    
    for (i in p) {
    var pp = p[i].toString().replace(/function/,'');
    THREE.Path.prototype.hasOwnProperty(i) &&
    console.log('\n<h3>.' + i + pp.substring(0, pp.indexOf('{')-1).replace(/\s+/g, ' ')  + '</h3>\n<div>todo</div>' );
    }
    267583f3
Curve.html 1.1 KB