line | 直線を定義する2地点の座標から成る\(2\times 3\)の配列。
2地点の座標を\(P_1(x_1,y_1,z_1)\), \(P_2(x_2,y_2,z_2)\)として
line.main[0][0]\(=x_1\),
line.main[0][1]\(=y_1\),
line.main[0][2]\(=z_1\),
line.main[1][0]\(=x_2\),
line.main[1][1]\(=y_2\),
line.main[1][2]\(=z_2\)
となるように与える。
すなわちline.main[0]が\(P_1\)を、line.main[1]が\(P_2\)を表す。 A \(2\times 3\) array composed of the coordinates of the two points that define the straight line. Give the array components as line.main[0][0]\(=x_1\), line.main[0][1]\(=y_1\), line.main[0][2]\(=z_1\), line.main[1][0]\(=x_2\), line.main[1][1]\(=y_2\), and line.main[1][2]\(=z_2\), where \(P_1(x_1,y_1,z_1)\) and \(P_2(x_2,y_2,z_2)\) are the two points; line.main[0] and line.main[1] represent the points \(P_1\) and \(P_2\), respectively. |
point | 直線からの距離を計算したい地点の座標を表す3要素ベクトル。
この地点の座標を\(P_0(x_0,y_0,z_0)\)として
point.main[0]\(=x_0\), point.main[1]\(=y_0\), point.main[2]\(=z_0\)
となるように与える。 A vector of 3 components representing the coordinate of the point where the distance from the line is to be calculated. Give the vector components as point.main[0]\(=x_0\), point.main[1]\(=y_0\), point.main[2]\(=z_0\), where \(P_0(x_0,y_0,z_0)\) is the point. |