How to add your knowledge

point_()

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

    Synopsis

    Creates a point by interpreting the 3 coordinates relative to the coordinate Frame f.

    Syntax

    point_ ( x As Number, _
             y As Number, _
             z As Number, _
             f As Frame ) As Point 
    Argument Type Description
    x Number The x coordinate of the point in Frame f.
    y Number The y coordinate of the point in Frame f.
    z Number The z coordinate of the point in Frame f.
    f Frame The coordinate frame in which the coordinates are to be defined.

    Example 1

    Intent >point_(1,0,0,translateFrame(localFrame, Vector(5,5,0))) 
    --> Point_(6.0, 5.0, 0.0, WorldFrame())