roblox finding points around a circle using radius 2c center 2c and angle

Solutions on MaxInterview for roblox finding points around a circle using radius 2c center 2c and angle by the best coders in the world

showing results for - "roblox finding points around a circle using radius 2c center 2c and angle"
Deann
05 Jul 2017
1--Radius
2local r = 2
3
4--Center (X,Y)
5local c = Vector2.new(5,7)
6
7--Theta(Angle of progression around the circle)
8local t = 95
9
10--Finding Point (X,Y)
11local Point = Vector2.new(c.X + r * math.cos(t), c.Y + r * math.sin(t))
12