1. 16 1月, 2013 1 次提交
  2. 13 1月, 2013 1 次提交
  3. 04 1月, 2013 1 次提交
  4. 03 1月, 2013 2 次提交
  5. 01 1月, 2013 1 次提交
  6. 28 12月, 2012 1 次提交
  7. 14 12月, 2012 2 次提交
  8. 05 12月, 2012 2 次提交
  9. 04 12月, 2012 1 次提交
  10. 02 12月, 2012 1 次提交
    • M
      Added shadow map type definitions and replaced shadowMapSoft boolean on the... · 0c899e05
      MiiBond 提交于
      Added shadow map type definitions and replaced shadowMapSoft boolean on the renderer with shadowMapType. The default type is THREE.PCFShadowMap, which amounts to the previous default of shadowMapSoft = true. A new type, THREE.PCFSoftShadowMap will enable bilinear filtering of the shadow in the shader for smoother results.
      0c899e05
  11. 25 11月, 2012 1 次提交
    • 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
  12. 15 11月, 2012 1 次提交
  13. 11 11月, 2012 1 次提交
  14. 07 11月, 2012 1 次提交
  15. 03 11月, 2012 1 次提交
  16. 02 11月, 2012 1 次提交
  17. 22 10月, 2012 1 次提交
  18. 15 10月, 2012 1 次提交
  19. 13 10月, 2012 1 次提交
  20. 28 9月, 2012 6 次提交
  21. 27 9月, 2012 1 次提交
  22. 14 9月, 2012 1 次提交
  23. 11 9月, 2012 1 次提交
  24. 10 9月, 2012 1 次提交
  25. 22 8月, 2012 1 次提交
  26. 18 8月, 2012 1 次提交
  27. 17 8月, 2012 1 次提交
  28. 16 8月, 2012 1 次提交
  29. 15 8月, 2012 1 次提交
  30. 14 8月, 2012 2 次提交
  31. 10 8月, 2012 1 次提交
    • M
      Update docs/api/core/Vector3.html · e2d459b9
      maximeq 提交于
      isZero actually checks the squared length against the "small epsilon".
      0.0001 = 0.01² so the function will return true for a length < 0.01.
      
      By the way if there is a good reason for a so limited accuracy it should be given here in the doc (or maybe even in the code).
      e2d459b9