bobbybob Posted September 25, 2018 Share Posted September 25, 2018 I ran in to this problem, because I have a sphere, and I need a deformed version of it, but only as a rest attribute. I know how to do this in other ways, but I thought, that to just make the deformation, create the rest, delete the P attribute and then merge it with the original sphere would be nice. But when trying to delete the P attribute with a Attribute Delete, nothing happens? Is this because P is a special attribute or something? Would be interesting to know. Quote Link to comment Share on other sites More sharing options...
konstantin magnus Posted September 25, 2018 Share Posted September 25, 2018 Plugin both versions in an attribwrangle. Then you can take over the rest attribute from the second input with: v@P = @opinput1_rest; Morphing between both positions would be: v@P = lerp(@P, @opinput1_rest, chf('morph') ); Point positions cannot be deleted, but you can set them all to zero: v@P = vector(0); 1 Quote Link to comment Share on other sites More sharing options...
bobbybob Posted September 25, 2018 Author Share Posted September 25, 2018 Thanks for the answer @konstantin magnus, but what I really wanna know is, why we can't delete the @P attribute. Just to understand the data architecture better. Quote Link to comment Share on other sites More sharing options...
Skybar Posted September 25, 2018 Share Posted September 25, 2018 Just guessing here but isn't that kinda the same as just deleting the point, since a point cant exist without a position? Quote Link to comment Share on other sites More sharing options...
animatrix Posted September 25, 2018 Share Posted September 25, 2018 P is a special attribute, and Houdini makes a lot of assumptions about the existence of P. If you are concerned about the memory use, just set it to 0 and it shouldn't take as much space. 1 Quote Link to comment Share on other sites More sharing options...
Iskander Posted September 26, 2018 Share Posted September 26, 2018 12 hours ago, pusat said: P is a special attribute, and Houdini makes a lot of assumptions about the existence of P. If you are concerned about the memory use, just set it to 0 and it shouldn't take as much space. Fundamental, I would say. :) Quote Link to comment Share on other sites More sharing options...
LaidlawFX Posted September 26, 2018 Share Posted September 26, 2018 Since Houdini is a 3-D program the fundamental assumption is that all geometry data is associated with a point. A program that would be agnostic to this type of data would be excel. 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.