vector_()

Synopsis

Creates a vector relative to a given Frame .

Syntax

vector_ ( dx As Number, _
          dy As Number, _
          dz As Number, _
          f As Frame ) As Vector
Argument Type Description
dx Number Local x component of the vector .
dy Number Local y component of the vector .
dz Number Local z component of the vector .
f Frame Coordinate system in which the components are to be evaluated.

Example 1

Construct a vector in the World Coordinate System
Intent >vector_(1, 0, 0, worldFrame())
--> Vector_(1.0, 0.0, 0.0, WorldFrame())