circlePoint()

概要

指定された角度は、X 軸に対して相対的であるサークルの point を戻します。 「circleAngle()」も参照してください。

構文

circlePoint ( cir As Part, _
              t As Number ) As Point 
引数 [タイプ] 説明
cir Part ArcMixin でミックスするパーツです
t Number 度単位の角度です

例 1

この例の円パーツです。
Child Circle_1 As :Arc
    center = Point(0,0,0)
    diameter = 5.0
End Child
Intent >circlePoint(Circle_1, 45)
--> Point_(1.76776695296637, 1.76776695296637, 0.0, WorldFrame())
Intent >circleAngle(Circle_1, Point(1.76776695296637, 1.76776695296637, 0.0)
-->45.0