Today I am trying to make a nice little earth. I use a constant DX9 shader to make the sphere and put the grey earth map from the girlpower user map on it. I notice that there are some jagged edges at the very end of siberia and I notice they are also in the girlpower example.
beta>32.2 has that fixed and comes with a ConstantWrap (EX9.Effect) which you use for mapping spheres. meanwhile you can simply uncomment
//Wrap0 = U; // useful when mesh is round like a sphere
from the constant effect.
I think it should be possible to create an earth with the default sphere. Couldn’t the sphere in vvvv by default have the “correct” UV mapping or is there a reason for it not to have that?
ah probably you also need to set the texture-samplers addressmode to wrap. see latest alphas ConstantWrap (EX9.Effect).
the reason for the sphere needing a specific shader is that like this the sphere does not have to double vertices at its seam only to be able to specify 2 different sets of uvs for the points at the seam.