freaq Posted June 20, 2014 Share Posted June 20, 2014 I'm probably being very stupid, and a total n00b with vex so please bear with me. all this is currently in an attribute wrangle. basically I want to create a new vector attribute and I want it to be the location of a point. (another point not p)I already have an attribute for it that is a vector called position.I can do: @Cd = position; works fine vector @test = {0,0,0}; works too but I cannot dovector @test = position; vector @test = {position}; vector @test = {position.x,position.y,position.z}; also I can't seem to get the printf to work.all help is greatly appreciated!!! Quote Link to comment Share on other sites More sharing options...
anim Posted June 20, 2014 Share Posted June 20, 2014 (edited) if position is vector variable, then it would be: v@test = position; if position is an attribute then: v@test = v@position; Edited June 20, 2014 by anim Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.