Follyx 24 Posted August 7, 2017 Hi, for a spline ramp I use : f@foo = chramp('myramp',@P.x); But whats with a colorramp? Neither in the help nor anywhere I could find ressources for it. Share this post Link to post Share on other sites
ikoon 261 Posted August 7, 2017 Afaik, you have to change the type of the ramp in the Edit Parameter Interface manually. Like this: Also the vex code then will be for example @Cd = chramp('myramp',@P.x); 1 Share this post Link to post Share on other sites
Follyx 24 Posted August 7, 2017 yep. already knowed it, but thanks anyway. Thought there are some hidden parameter in the "chramp('myramp',@P.x)".... Share this post Link to post Share on other sites
mestela 677 Posted August 7, 2017 If you explicitly cast chramp to a vector first, the 'create spare parameters button' will create a colour ramp. Eg @Cd = vector(chramp('myramp',@P.x)); 7 2 Share this post Link to post Share on other sites