円柱
 
円柱
円柱の生成カーブは、軸から R の距離で軸に平行な直線です。点の半径距離は一定で、点の高さは v です。
データフォーマット:
e1[3] Unit vector, in the u direction
e2[3] Unit vector, in the v direction
e3[3] Normal to the plane
origin[3] Origin of the plane
radius Radius of the cylinder
パラメータ表示:
(x, y, z) = radius * [cos(u) * e1 + sin(u) * e2] +
v * e3 + origin
技術上の注記:
円柱、円錐、トラス、および一般回転サーフェスの場合、3 つの直交単位ベクトル (e1e2e3) と基準点で構成されるローカル座標系が使用されます。カーブは e1e3 の平面上にあり、e1 から e2 の方向に回転します。u サーフェスパラメータにより回転の角度が決定され、v パラメータにより生成カーブ上の点の位置が決定されます。
これは役に立ちましたか?