09-14-2024, 09:22 AM
Pages: 1 2
09-14-2024, 12:14 PM
Hello. 
I also like cycloids around the circle.

I also like cycloids around the circle.

09-15-2024, 12:57 PM
Here is my cycloid

Code:
GraphicsWindow.BackgroundColor = "White"
GraphicsWindow.PenColor = "Blue"
GraphicsWindow.PenWidth = 2
' Let's set the parameters
radius1 = 9 ' Radius of a rolling circle
radius2 = 90 ' Radius of a fixed circle
lineLength = radius1 + 15 ' Length of line from the center of rolling circle
centerX = 200 ' Center of the fixed circle along X
centerY = 200 ' Center of the fixed circle along Y
' Initial coordinates of the point at the end of the line
x = centerX + radius2 + lineLength
y = centerY
' Angle of rotation
angle = 0
While (angle < 360 * 5) ' Draw several turns
' ВCalculate the coordinates of the center of the rolling circle
rollingCenterX = centerX + (radius2 + radius1) * Math.Cos(angle * Math.Pi / 180)
rollingCenterY = centerY + (radius2 + radius1) * Math.Sin(angle * Math.Pi / 180)
' Calculate the coordinates of the point at the end of the line
x = rollingCenterX - lineLength * Math.Cos((radius2 + radius1) / radius1 * angle * Math.Pi / 180)
y = rollingCenterY - lineLength * Math.Sin((radius2 + radius1) / radius1 * angle * Math.Pi / 180)
' Draw a dot
GraphicsWindow.DrawEllipse(x, y, 2, 2)
' Increasing the angle
angle = angle + 1
EndWhile
09-17-2024, 08:12 AM
How about the 4 conic shapes?
09-25-2024, 09:12 AM
SBJN892.000
09-25-2024, 10:10 AM
Hello.
I knew that the cycloid was the most beautiful.

I knew that the cycloid was the most beautiful.

09-26-2024, 08:11 PM
MKHW723.000
What is interesting about this is the program was created by Microsoft Copilot!
JR
What is interesting about this is the program was created by Microsoft Copilot!
JR
09-26-2024, 08:59 PM
Ha,
That's pretty much my experience with AI - looks good, but usually wrong in the detail - it's not a hyperbola!
That's pretty much my experience with AI - looks good, but usually wrong in the detail - it's not a hyperbola!
09-27-2024, 05:23 AM
Maybe chatgpt could do better in my small basic extension 50% I have learnt from chatgpt
09-27-2024, 11:55 AM
LitDev,
So, why do you say it isn't a hyperbola? Looks OK to me!
JR
So, why do you say it isn't a hyperbola? Looks OK to me!
JR
Pages: 1 2