Vertex x,y,z

Blitz3D Forums/Blitz3D Programming/Vertex x,y,z

Ross C(Posted 2004) [#1]
When you retrieve these, are they relative to the mesh or the world ?


GfK(Posted 2004) [#2]
Mesh


Al Mackey(Posted 2004) [#3]
but if you pass a second argument, they can be relative to world:
LocalX = VertexX(entity)
WorldX = VertexX(entity, 1)



Ross C(Posted 2004) [#4]
Dam, that's my problem :) Thanks guys. So the ,1 is global then :)


RGR(Posted 2004) [#5]
Al - VertexX(Entity) does not exist!

Its VertexX(Surface,Index) and its local

Ross, see my question :
www.blitzbasic.co.nz/Community/posts.php?topic=29399
shows how to retrieve the global data


Ross C(Posted 2004) [#6]
Thanks man. I've found a workaround tho :) Thank you anyway :D