You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Would be very useful the possibility to get the value of a line at a certain point.
For example, i have this line y = 4x + 23 and I would know what is its the value of "y" for "x=3". In this case y= 35 ;)
The text was updated successfully, but these errors were encountered:
One thought I've had is to implement Line#at. Then the user could use line.at(3) to get the value of y when x = 3. That seems intuitive enough, but then how should TwoPointLine#at behave? If someone is trying to find the midpoint of a line segment, they might reasonably try to use line.at(0.5), which would do the wrong thing.
Hi,
Would be very useful the possibility to get the value of a line at a certain point.
For example, i have this line y = 4x + 23 and I would know what is its the value of "y" for "x=3". In this case y= 35 ;)
The text was updated successfully, but these errors were encountered: