rblock.ball.pos

Syntax

v = rblock.ball.pos(p)

Get the rigid block ball position. This is the position of the minimum enclosing {circle in 2D; sphere in 3D} with radius rblock.ball.radius.

Returns:

v - rigid block ball position vector

Arguments:

p - rigid block pointer

Component Access

f = rblock.ball.pos (p)->x

f = rblock.ball.pos.x(p)

Get the \(x\)-component of the rigid block ball position.

Returns:

f - \(x\)-component of the rigid block ball position vector

Arguments:

b - rigid block 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 = rblock.ball.pos(p, 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 = rblock.ball.pos.y(p)
f = rblock.ball.pos.z(p) (3D ONLY)