How to add your knowledge

circlePoint()

    Table of contents
    1. 1. Synopsis
    2. 2. Syntax
    3. 3. Example 1

    Synopsis

    Returns a point on a circle that is at a given angle relative to the X axis. Also see circleAngle().

    Syntax

    circlePoint ( cir As Part, _
                  t As Number ) As Point 
    Argument Type Description
    cir Part A part that mixes in ArcMixin
    t Number Angle in degrees

    Example 1

    The circle part for the example

    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