wateryfield Posted November 26, 2013 Share Posted November 26, 2013 Hi, everybody. I have to ask a newbie question. I want to get a geometry when the first circle have three point,and the second circle have five point, the third have seven. So what function can i used in value by copy node stamp inputs. Thanks you! circle_cpoy.hip Quote Link to comment Share on other sites More sharing options...
Robert Posted November 26, 2013 Share Posted November 26, 2013 Hi, You are approaching it the right way with the copy stamp but instead of giving it a fixed value, in your case 5, you must give it a dynamic value. The local variable of the copy node for the amount of copies is $CY. This means that if you put $CY in your stamp value it will increase it by 1 every iteration starting from 0. Because it starts at zero it would mean the amount of divisions would be 0 in your circle so I would add 3 to the expression so that you always at least have a triangle. circle_cpoy.hipnc Quote Link to comment Share on other sites More sharing options...
wateryfield Posted November 27, 2013 Author Share Posted November 27, 2013 Hi, You are approaching it the right way with the copy stamp but instead of giving it a fixed value, in your case 5, you must give it a dynamic value. The local variable of the copy node for the amount of copies is $CY. This means that if you put $CY in your stamp value it will increase it by 1 every iteration starting from 0. Because it starts at zero it would mean the amount of divisions would be 0 in your circle so I would add 3 to the expression so that you always at least have a triangle. Hi, You are approaching it the right way with the copy stamp but instead of giving it a fixed value, in your case 5, you must give it a dynamic value. The local variable of the copy node for the amount of copies is $CY. This means that if you put $CY in your stamp value it will increase it by 1 every iteration starting from 0. Because it starts at zero it would mean the amount of divisions would be 0 in your circle so I would add 3 to the expression so that you always at least have a triangle. OH! I have try some value,but i forget the basic one. Thank you so much! Robert! Quote Link to comment Share on other sites More sharing options...
siberian711 Posted November 27, 2013 Share Posted November 27, 2013 Or you could change the stamp variable to s=$CY*2+3 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.