Description Usage Arguments Value Examples
View source: R/CreateLinePoints.R
CreateLinePoints
creates a vector that represents the line that connects two points
1 | CreateLinePoints(P1, P2)
|
P1 |
Vector containing the xy-coordinates of point 1 |
P2 |
Vector containing the xy-coordinates of point 2 |
Returns a vector which contains the slope and intercept of the defined line. If the points have the same x-coordinate, the slope is set to Inf
and the intercept is replaced by the x-value for the line (which is a vertical line in this situation)
1 2 3 | P1 <- c(0,0)
P2 <- c(1,1)
Line <- CreateLinePoints(P1, P2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.