Drawing Lines on a GUI?
Ok, so I've got my script. Currently, it correctly plots points, but now I want to connect those points to make a line graph. I've tried a lot of different things, but I've not gotten it right. I think the only problem is that the lines have wrong slopes, but I'm not sure if that's the only problem.
PS: If you know of a script that does exactly what I am describing (plotting points and/or drawing lines), then let me know!
Btw, this script uses the data from this table:
{18.351, 18.615, 18.516, 18.921, 19.012, 19.051}
09 | function graph(x, y, i) |
10 | local p = Instance.new( "Frame" , script.Parent.Pixels) |
11 | p.Size = UDim 2. new( 0 , 5 , 0 , 5 ) |
12 | p.Position = UDim 2. new(x, 0 , y, 0 ) |
14 | p.BackgroundColor 3 = Color 3. new( 200 , 20 , 20 ) |
17 | if p.Position.Y.Scale > High then |
18 | High = p.Position.Y.Scale |
20 | if p.Position.Y.Scale < Low then |
21 | Low = p.Position.Y.Scale |
23 | local SpanY = High - Low |
24 | local PixelY = p.Position.Y.Scale |
25 | local FactorY = High - PixelY |
26 | local FractionY = FactorY / SpanY |
28 | local PixelX = p.Position.X.Scale |
29 | local FactorX = (#bux - 1 ) - PixelX |
30 | local FractionX = FactorX / (#bux - 1 ) |
32 | local XO = p.Position.X.Offset |
33 | local YO = p.Position.Y.Offset |
34 | p.Position = UDim 2. new(FractionX, XO, FractionY, YO) |
44 | y 2 = p.Position.Y.Scale * script.Parent.AbsoluteSize.Y |
45 | x 2 = p.Position.X.Scale * script.Parent.AbsoluteSize.X |
47 | y 1 = p.Position.Y.Scale * script.Parent.AbsoluteSize.Y |
48 | x 1 = p.Position.X.Scale * script.Parent.AbsoluteSize.X |
49 | slope = math.atan 2 ((y 2 - y 1 ),(x 2 - x 1 )) |
50 | dist = math.sqrt(math.pow((x 2 - x 1 ), 2 ) + math.pow((y 2 - y 1 ), 2 )) |
51 | line = Instance.new( 'Frame' , script.Parent.Lines) |
52 | line.BorderSizePixel = 0 |
53 | line.Size = UDim 2. new( 0 , dist, 0 , 10 ) |
54 | print (slope, slope * 360 ) |
55 | line.Rotation = slope * 360 |
56 | line.Position = UDim 2. new( 0 , x 2 , 0 , y 2 ) |
61 | bux = { 18.351 , 18.615 , 18.516 , 18.921 , 19.012 , 19.051 } |
63 | for i = #bux- 1 , 1 , - 1 do |