sonppw Posted May 1, 2014 Share Posted May 1, 2014 (edited) is there represent voxel expression like $PT ??(in field) that is mean like each point have different value by using $PT so i want to give to different value at each voxel by using expression i can't looking for voxel expression in Help document sorry question is very simple Edited May 1, 2014 by sonppw Quote Link to comment Share on other sites More sharing options...
wick3dParticle Posted May 1, 2014 Share Posted May 1, 2014 Hi Sonppw, To my knowledge there is no voxel expression. With that being said, you can generate a volume from attributes. Look at the Volume From Attrib sop node. ~Ilan Quote Link to comment Share on other sites More sharing options...
anim Posted May 1, 2014 Share Posted May 1, 2014 (edited) Volume Wrangle in SOPsGas Field Wrangle in DOPsthen you can do whatever you want so either use @P to vary each voxel like @density = rint(random(@P*1000)); or @density = noise(@P*10); or you can compute voxel id by @ix+@resx*@iz+@resx*@resz*@iy;and use it for whatever like int vxlid = @ix+@resx*@iz+@resx*@resz*@iy; @density = random(vxlid); all of this can be done with VOP nodes if you use Volume VOP or Gas Field VOP, it's just a matter of preference Edited May 1, 2014 by anim 3 Quote Link to comment Share on other sites More sharing options...
wick3dParticle Posted May 2, 2014 Share Posted May 2, 2014 Good Call Tomas! ~Ilan Quote Link to comment Share on other sites More sharing options...
sonppw Posted May 2, 2014 Author Share Posted May 2, 2014 thanks everybody ! 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.