.Magnitude not working correctly on GUI frames?
I am trying to make a graph that connects two "nodes" (just a GUI Frame) together by creating a thin GUI frame whose ends are connected to either node. The issue is that when the nodes start to become farther away from each other, the part of the script that is supposed to calculate the length of the line connecting the two nodes begins to overestimate the distance. Heres an example; I am trying to graph the function "tan(x)". Here is what it looks like:
https://imgur.com/a/odpV7Oe
As you can see, the nodes are represented by the red dots on the screen, and the black lines are the GUI frames connecting the red nodes. On the section of the graph where the nodes are more condensed, the script does a fine job in connecting them. When the nodes start to become distant, as marked by the highlighted blue line, the script starts to make the length of the GUI line longer than it actually is, and ends up making the lines break out of the graph frame. Here is the code that connects two nodes together:
01 | local function connectNodes(firstNode, secondNode, reference) |
03 | local firstPosition = firstNode.Position |
04 | local secondPosition = secondNode.Position |
06 | local firstX = firstNode.Position.X.Scale |
07 | local secondX = secondNode.Position.X.Scale |
09 | local firstY = firstNode.Position.Y.Scale |
10 | local secondY = secondNode.Position.Y.Scale |
12 | local newX = (firstX + secondX) / 2 |
13 | local newY = (firstY + secondY) / 2 |
15 | local newPosition = Vector 2. new(newX, newY) |
18 | local firstNodeCoordinates = Vector 2. new(firstX, firstY) |
19 | local secondNodeCoordinates = Vector 2. new(secondX, secondY) |
21 | local newSize = (firstNodeCoordinates - secondNodeCoordinates).Magnitude |
23 | if (newSize > 0.5 ) then |
28 | local displacement = secondNode.AbsolutePosition - firstNode.AbsolutePosition |
29 | local rotation = math.atan 2 (displacement.Y , displacement.X) |
31 | local newEdge = edge:Clone() |
32 | newEdge.Position = UDim 2. new(newPosition.X, 0 , newPosition.Y, 0 ) |
33 | newEdge.Size = UDim 2. new(newSize, 0 , 0 , 2 ) |
34 | newEdge.Rotation = math.deg(rotation) |
35 | newEdge.Parent = reference |
I am not sure if it has something to do with the way I am getting the position of the nodes, or if it is because i'm strictly using Scale (Using AbsolutePosition for firstPosition and secondPosition does end up making them the right size, but the lines are then created off the graph), or maybe something else. Any help is appreciated.