I made circle(by random point, random radius)
And
I want to Evaluate Curve Each circle by random t value but it failed why???
20220313_1.gh (17.0 KB)
I made circle(by random point, random radius)
And
I want to Evaluate Curve Each circle by random t value but it failed why???
20220313_1.gh (17.0 KB)
the random numbers you are generating are all in the Domain 2.5 to 12.5, while the circumference of your circles is generally much bigger than that range, so the evaluation falls in the first quarter (standard circle domain is 2 * Pi * Radius)
what might be easier is to reparametrize your circles (in such a way their Domain becomes “0 to 1”), and just use Random numbers generated on the very same 0-1 interval
Thank you!!
Keep in mind reparmetrize
I was also curious about how to check the range of t value, thanks for letting me know that I can check it using crvdomain!