wall.rotation.center

v = wall.rotation.center(w)
wall.rotation.center(w) = v

Get/set the wall center of rotation.

Returns:v - wall center of rotation vector
Accepts:v - wall center of rotation vector
Arguments:w - wall pointer

Component Access

f = wall.rotation.center (w)->x
wall.rotation.center (w)->x = f

f = wall.rotation.center.x(w)
wall.rotation.center.x(w) = f

Get/set the \(x\)-component of the wall center of rotation.

Returns:f - \(x\)-component of the wall center of rotation vector
Accepts:f - \(x\)-component of the wall center of rotation vector
Arguments:w - wall pointer

Access other vector components (\(y\), \(z\) (3D ONLY)) by substituting the component name where \(x\) appears above. See Member Access Operator for information about accessing members from data types using ->.

Deprecated Component Access

Component access by adding an optional integer in the function arguments (e.g., f = wall.rotation.center(w,3)) is deprecated. It remains available but will not be supported in future versions. See Component Access with Integers in FISH on the Deprecated Commands and FISH page for details.

This is hidden. Added to include remaining vector component access functions for inline help.

f = wall.rotation.center.y(w)
f = wall.rotation.center.z(w) (3D ONLY)