Zeyu Wang

Results 5 comments of Zeyu Wang

Maybe you need to edit the html file and add your own api key from google

@mikedh Hi Mike, I'm also working with UV coordinates. Could you confirm if `mesh.vertices` and `mesh.visual.uv` have the same order (i.e., if the UV coordinates of `mesh.vertices[i]` are `mesh.visual.uv[i]`)? I...

@iamnotstone I'm not sure if having more `vt`'s than `v`'s makes sense. You can try loading the obj and UV unwrapping it again in Blender. It's likely that the exported...

@mikedh I just confirmed that `mesh.vertices[i]` doesn't necessarily correspond to `mesh.visual.uv[i]`. In fact, #`v` and #`vt` are not always the same, because UV mapping is on a per-face basis, not...

@mikedh Thank you for pointing it out. I'm still confused about how we can access UV coordinates once a mesh is loaded. If I load an OBJ file containing `v`,...