1. 20 11月, 2010 1 次提交
  2. 19 11月, 2010 1 次提交
    • M
      Cleaned up the escher cubemap code a bit. Also, I think it looks much nicer... · d21c2979
      Mr.doob 提交于
      Cleaned up the escher cubemap code a bit. Also, I think it looks much nicer without illumination... ?
      At first I though the cube around the sphere was x-inverted (unless the in tention is to simulate refraction...) I've tried changing that but the effect is still weird. I guess those textures work mainly for the sphere and not for the panorama.
      
      I reused the code and did another example using the skymap. More to come ;)
      
      I can see some lines at the edges of the planes though. I guess that's antialiasing kicking in. Should be fixed with a proper cube mesh I guess.
      
      CanvasRenderer has a property called `autoClear` which is true by default. By making it false you have control of when the renderer cleans the screen (by calling renderer.clear()). I wonder if something like that can be added to the WebGLRenderer? That way we can render the cube outside the spheres from a diferent camera (centered in the middle of the screen) than the spheres floating.
      
      Also, added `shading` parameter to `MeshBasicMaterial` (environment mapping was being rendered faceted when using `MeshBasicMaterial` because `shading` was missing (and thus Faceted)).
      d21c2979
  3. 18 11月, 2010 1 次提交
    • A
      Added cube mapping to WebGLRenderer. Also added cube map example. Finally ;) · 3ee99dc4
      alteredq 提交于
      TODO:
      
        - maybe image array loader should go into TextureCube.js so that people could just reuse the code
      
        - it may be worth to be able to specify different combination of environment map and underlying material (in single render pass),
          currently color/color map/environment map are multiplied, though addition also produces very interesting looking materials
      3ee99dc4
  4. 17 11月, 2010 2 次提交
    • M
      Removed alpha component from the Color class · 51f91fdd
      Mr.doob 提交于
      GouraudShading and PhongShading ⟶ SmoothShading
      51f91fdd
    • A
      Added support to "shading" materials parameter in WebGLRenderer. · 3d370891
      alteredq 提交于
      This is actually tricky due to multimaterials and vertex normals.
      
      The practical effects of "shading" parameter in WebGLRenderer are currently following:
      
      - if your model has vertex normals, now you can "dumb down" its shading by specifying THREE.FlatShading for MeshLambertMaterial and MeshPhongMaterial
      - if your model has only face normals, it will always have just flat shading, no matter which shading you set, no escape from this
      - if your model has multiple materials, smooth shading always "wins", meaning if there is at least one smooth shaded material in multimaterial group, all other materials in this group will be also smooth shaded (this is solvable by having multiple normal buffers, but seems wasteful, at least for the moment, till there are no practical use cases)
      
      Currently implemented shading / material combinations:
      
        - MeshNormalMaterial: FlatShading [default], GouradShading
        - MeshDepthMaterial:  no shading parameter in material, uses own specific shading
        - MeshBasicMaterial: no shading parameter in material, uses own specific shading
        - MeshLambertMaterial: FlatShading, GouraudShading [default]
        - MeshPhongMaterial: FlatShading, PhongShading [default]
      3d370891
  5. 16 11月, 2010 3 次提交
  6. 15 11月, 2010 5 次提交
  7. 13 11月, 2010 6 次提交
  8. 12 11月, 2010 4 次提交
  9. 06 11月, 2010 1 次提交
  10. 28 10月, 2010 1 次提交
    • A
      Added Blinn-Phong material for WebGLRenderer. · b6904f3d
      alteredq 提交于
      In Chrome it looks more or less ok, but it has some problem in Firefox 4 (with some camera angles there are black areas around edges).
      
      Also updated Python builder scripts and examples to include this new material.
      b6904f3d
  11. 27 10月, 2010 1 次提交
    • M
      * MeshBitmapUVMappingMaterial -> MeshBitmapMaterial. Second param is mode,... · 7464f5ff
      Mr.doob 提交于
      * MeshBitmapUVMappingMaterial -> MeshBitmapMaterial. Second param is mode, which is THREE.MeshBitmapMaterialMode.UVMAPPING by default.
      * Removed MeshFaceColorFillMaterial and MeshFaceColorStrokeMaterial
      * Added MeshFaceMaterial ( it uses the face.material for that pass )
      * CanvasRenderer and SVGRenderer per face material logic changed.
      * SVGRenderer supports particles again.
      * WebGLRenderer currently broken :/
      * Code clean up
      7464f5ff
  12. 21 10月, 2010 1 次提交
    • A
      Extended CanvasRenderer to be able to handle decals... · dde831bf
      alteredq 提交于
      Extended CanvasRenderer to be able to handle decals (MeshBitmapUVMappingMaterials as secondary materials).
      
      For decals you need to set "decalIndex" property of the material (corresponding to materials index of the original mesh UV material).
      
      Added multimaterials example.
      
      Fixed forgotten sphere smoothing in OBJ converter example.
      dde831bf
  13. 18 10月, 2010 1 次提交
    • U
      Added OBJ -> Three.js converter. · 60c23544
      unknown 提交于
      Added OBJ converter test example.
      
      Modified Three.js to handle converted models:
      
       - extended WebGL renderer to use texturing
         - broke down model into multiple VBOs according to materials
         - textures are lazy created when images get loaded
           (converter takes care of resizing images to nearest power of 2
            dimensions using 2d canvas)
      
       - changed material array semantics in Mesh object
          - before: multiple materials were applied to all faces (broken in WebGL, needs multitexturing shader)
          - now: there is only single material per face, but one mesh can have faces with different materials
      
       - added per vertex normals (to get smooth shading in WebGL)
      60c23544
  14. 21 9月, 2010 1 次提交
  15. 17 9月, 2010 1 次提交
  16. 03 9月, 2010 1 次提交
  17. 22 7月, 2010 1 次提交
  18. 17 7月, 2010 1 次提交
    • M
      * Refactored `CanvasRenderer` (more duplicated code, but easier to handle) · 8f543db1
      Mr.doob 提交于
      * `Face4` now supports `MeshBitmapUVMappingMaterial`
      * Changed order of `*StrokeMaterial` parameters. Now it's `color`, `opacity`, `lineWidth`.
      * `BitmapUVMappingMaterial` > `MeshBitmapUVMappingMaterial`
      * `ColorFillMaterial` > `MeshColorFillMaterial`
      * `ColorStrokeMaterial` > `MeshColorStrokeMaterial`
      * `FaceColorFillMaterial` > `MeshFaceColorFillMaterial`
      * `FaceColorStrokeMaterial` > `MeshFaceColorStrokeMaterial`
      * `ColorStrokeMaterial` > `LineColorMaterial`
      * `Rectangle.instersects` returned false with rectangles with 0px witdh or height
      8f543db1
  19. 12 7月, 2010 1 次提交
  20. 20 6月, 2010 1 次提交
  21. 11 6月, 2010 1 次提交
  22. 10 6月, 2010 1 次提交
  23. 08 6月, 2010 1 次提交
  24. 07 6月, 2010 1 次提交
  25. 06 6月, 2010 1 次提交
    • M
      + Added Line Object · e98397cb
      Mr.doob 提交于
      + Workaround for WebKit not supporting rgba() in SVG yet
      + Aesthetic changes on the readme file
      e98397cb