*SetVector() - single vector
Sets the component values of a vector.
Syntax
*SetVector(vector_name, x, y, z)
Arguments
- vector_name
- The variable name of an existing vector.
- x, y, z
- The X, Y, and Z components of the vector.
Example
*Body(b_kn, "Knuckle", p_kn_cm)
*Body(b_jack, "Jack", p_jack_cm
*Point(p_wc, "Wheel Center")
*Vector(v_Z, "Plane Normal")
*InplaneJoint(jt1, "Inplane joint", b_kn,
b_jack,
p_wc,
NORMAL,
v_z)
*SetVector(v_Z, 1, 2, 0)