06-08-2025 08:41 PM
I have tried to complete this but I have no idea where I am going wrong, the weird thing is that after the number 50, I think, it creates a half circle but it starts at number 8 of the Y.
06-08-2025 09:59 PM
I can't open your code unless you do a "save for previous" (2020 or below).
If complex data is allowed, all you probably needs is the following:
06-08-2025 10:15 PM
or alternatively something like this, maybe:
06-08-2025 11:03 PM
I love you very much, I started to base myself on your code to make it in the form of a block diagram since I was asked to do it that way and not with code or something else that makes it much easier. I am already making progress, you have helped me a lot.
but as you can see I'm still missing
06-08-2025 11:17 PM
06-08-2025 11:23 PM
06-08-2025 11:39 PM
where that orange/cafe array is located/created
06-08-2025 11:54 PM
It is an array of points where a point is a cluster of two DBLs, one for x and one for y.
06-09-2025 12:38 AM
@DonRoonin wrote:
where that orange/cafe array is located/created
Technically, you can avoid this if you compute the upper and lower halves of the circle in a single for loop, something like this:
06-09-2025 10:33 AM
I would even do a loop free solution.
I still strongly prefer my first suggestion because the circle is guaranteed to close and the points are evenly distributed around the circumference.
Attached are both versions.