anthonyblanchettepotvin Posted November 10, 2018 Share Posted November 10, 2018 (edited) Hi, I wonder if it's possible to initialize a curve from a line and be able to modify the curve from the Curve node. I'll explain what I'm doing right now. Of course, it doesn't work, but I'm sure it will help you to understand what is my goal. Fist, I have a Null node called curve_setup. This node contains parameters that controls my line. So, the length of the line and the number of points on the line. Next, I have an Attribute Wrangler node. This node creates the line using the parameters in the curve_setup. At this point, I did some research on the Curve node and the documentation says that I can "use a space-separated list of coordinates in this field to specify points". Then, there's a list of different format to specify different points. There's one format that got my attention. It's the Pn format which "copy the coordinates of point number n in the input geometry". So, I said to myself : "Is there a way to copy the coordinates of all the points of my previously created line in the coordinates of my curve ?". Then I did more research. I learned that the Coordinates parameter is a string, so I have to use expression functions. That said, I learned that there is a expression function called pointlist that returns a "space-separated list of point numbers". Since this function returns something like this : "0 1 2 3 4 5 6 7 8 9", I though that I could format the string and add a "P" in front of every number in the list. Since Pn "copy the coordinates of point number n in the input geometry", It would create a curve based on the line I created earlier and since I can see those points from the Curve node, I would be able to modify those points using the Curve node handle. Now, I just need to learn how to format the string within the Coordinates parameter of the Curve node. Edited November 10, 2018 by anthonyblanchettepotvin Forgot the last line. Quote Link to comment Share on other sites More sharing options...
anthonyblanchettepotvin Posted November 10, 2018 Author Share Posted November 10, 2018 So, here's a quick update. I managed to format the string within my Attribute Wrangle node. I created a detail attribute called coordinates that I can read from within the Coordinates parameter of the Curve node using an expression function called details which "returns the string value of a detail attribute". At this point, I can see my curve and I can change its length and number of points dynamically, which is awesome ! But, when I select the Curve node and try to edit the points, the only this I can do is insert a point. As soon as I insert a point, the new point appears in the Coordinates parameter and my expression function disappear to show its result. That said, I can't change the length and the number of points anymore. Before : After : At this point, I really don't know what to do. If something could help me with this issue, it would be awesome ! 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.