1,320 reputation
148
bio website tapio.github.com
location Finland
age
visits member for 1 year, 6 months
seen yesterday
stats profile views 57

May
17
awarded  Unsung Hero
May
15
comment Build phong shader from THREE.ShaderLib
@gaitat - That's just the same thing in different (longer and potentially less efficient) notation.
May
15
answered Build phong shader from THREE.ShaderLib
May
7
answered Changing material color on a merged mesh with three js
May
3
answered Never-ending floor in THREE.JS scene
May
1
comment How do I handle animated models in Three.js?
Morph animation is "baking", i.e. there's a separate object for each frame of animation. That takes a lot of space as each vertex is present in each frame. In skinning, there's a separate skeleton which is animated. Vertices are parented to the bones and move with them, so it's very efficient to only have animation frames for, say 10 bones, instead of potentially thousands of vertices.
Apr
30
comment How do I handle animated models in Three.js?
@user1066278: Yes, look at the examples. Also, the python script won't support skinning, since that would require e.g. bone information that obj files cannot hold.
Apr
30
answered How do I handle animated models in Three.js?
Apr
29
comment Using textures with Three.js and PLY file
@AustinBest: Looking at the PLY loader sources, it does not support loading the UVs. It only adds vertex and face information to the Geometry it creates. Look into some other loaders to see how it can be implemented.
Apr
25
comment Using textures with Three.js and PLY file
@AustinBest: If my answer is not clear or correct, feel free to ask for clarification here in the comments, so I can make my contribution acceptable for you. If you have a question unrelated to the original "Using textures with Three.js and PLY file" (E.g. "What is UV mapping?" or "How can I add texture coordinates to a PLY file?"), ask a new question (feel free to point me there). I prefer this to remain public so others can benefit and contribute. If I were someone with a similar problem, I'd hate to find this only to discover some essential piece was moved to a private email discussion.
Apr
22
comment Using textures with Three.js and PLY file
I'm saying a texture (image) is not enough. In order to map it to the surface of the object you additionally need to supply texture coordinates (also known as UV coordinates). In general, each vertex has an added Vector2 with its components ranging from 0 to 1. These "u" and "v" coordinates tell which part of the texture image is mapped to the vertex in question. E.g. an UV of (0.5, 0.5) would mean the middle of the texture is put into this particular vertex.
Apr
20
answered Using textures with Three.js and PLY file
Apr
18
answered Three.js JSONLoader texture issues
Apr
17
comment How can I delete fork dependency of my repository on github?
@Patt, I've expanded my answer to cover wiki and issues. As eis said, commit history is preserved, because you are pushing the entire repo, not just some files.
Apr
17
revised How can I delete fork dependency of my repository on github?
Add stuff about wiki and issues.
Apr
17
answered How can I delete fork dependency of my repository on github?
Apr
15
answered Three.js and Opera Shader
Apr
13
awarded  Necromancer
Apr
8
answered ThreeJS: is it possible to simplify an object / reduce the number of vertexes?
Mar
29
comment why Particle system with shader doesn't work? three.js
No, of course you still need shaders to draw anything. You need to pass an extra attribute to the shaders, which tells which part of the texture to sample, i.e. "uv", although if you want to map several texels to one particle, you also need to use gl_PointCoord because there is only one vertex per particle (so only one uv).