Questions tagged [uvw]

7 questions
1
vote
1 answer

Server Sent Events not received from a self-made server

I'm trying to set up a web server using uvw, a wrapper around libuv. I've got the server to a point, where i can send out simple responses, and it works without issues. I wanted to add a SSE route, but no matter what I've tried, i cannot get the…
1
vote
0 answers

Opengl uvw projection, what's under the hood?

I'm wondering, what calculations are made under the hood, to transform texture pixel coordinates from uvw space to xyz space, when using sampler2d in fragment shader. Any links to read about it would be appreciated. This bruteforce algorithm that…
3dmodels
  • 103
  • 7
1
vote
1 answer

UV mapping for a dome?

I am trying to understand how can I change UV mapping of a dome, I need a different texture map projection than this one coded below: protected final void createDome(final float radius) { int lats=16; int longs=16; …
Steel Plume
  • 2,260
  • 3
  • 26
  • 35
1
vote
1 answer

How can I set UVs to a Mesh in Blender Python?

Using Blender 2.49's Python API I'm creating a mesh. I have a list of vertices and a list of face indices. e.g. mesh = bpy.data.meshes.new('mesh') mesh.verts.extend(mVerts) mesh.faces.extend(mFaces) I've noticed MVert's uvco property and MFace's uv…
George Profenza
  • 50,687
  • 19
  • 144
  • 218
1
vote
1 answer

Making texture mirror on back of plane

I have recently started up using 3DS Max after an period of 6 years break. I am trying to create an game tile / brick for a board game with a number on each sides. I have made the tile from a box with chamfered sides for it to look a little smooth…
Mansa
  • 2,277
  • 10
  • 37
  • 67
1
vote
0 answers

Virtual coordinate system

I have some questions about ray tracing: How can I calculate w,v,u unit vectors according to world coordinate system ? |----------------------| up vector | | ^ | …
0
votes
1 answer

load object with uvw unwrap into three.js

I've got a 3D object with an unwrapped uvw map, done in 3ds max, and saved as an .fbx. When I load the object into a 3js scene and apply a texture, the mapping is lost. How do I keep the uvw mapping on the object? Many thanks.
bhnh
  • 31
  • 5