を返し、構築線と各 points と vectors によって定義された無限平面の間の交差の point をクリックします。 線分と平面が平行な場合は、エラーを発行します。交点を返します。 point
interLinePlane ( linePoint As Point, _
lineDir As Vector, _
planePoint As Point, _
planeNormal As Vector ) As Point
引数 | [タイプ] | 説明 |
---|---|---|
linePoint | Point | 交差する線分上の Point をクリックします。 |
lineDir | Vector | 線分の方向です。 |
planePoint | Point | 交差する平面上の Point をクリックします。 |
planeNormal | Vector | 平面の法線を vector します。 |
この線分は、YZ プレーンと交差する場所があります。Intent >interLinePlane(point(2,2,0), vector(1,3,0), point(0,0,0), vector(1,0,0))
--> Point_(0.0, -4.0, 0.0, WorldFrame())
point