|
Angle of Line in Line_Probe output john starkweather from United States [2 posts] |
6 year
|
The output of a Line_Probe is an array PROBED_LINES.
How would one use information in the array with Calculate_Angle?
|
|
|
john starkweather from United States [2 posts] |
6 year
|
One way is to use a cscript which could either calculate the angle, or write variables that are easy to hand to Calculate_Angle:
int pts[4];
getArrayVariable("Probed_Lines", &pts, 4);
setVariable("x1",pts[0]);
setVariable("y1",pts[1]);
setVariable("x2",pts[2]);
setVariable("y2",pts[3]);
|
|
|
Steven Gentner from United States [271 posts] |
6 year
|
In most cases, you can also use an expression where you might just type in a number. For example:
[PROBED_LINES:0]
[PROBED_LINES:1]
would represent the first x and y numbers in that array. You can then type in [PROBED_LINES:0] where you would normally just type in a number in the X Start Calculate_Angle module.
STeven.
|
|