brick.lower.corner

Syntax

iv = brick.lower.corner(b)

Get the brick lower corner position.

Returns:v - brick lower corner position vector
Argument:b - brick pointer

Component Access

f = brick.lower.corner (b)->x

f = brick.lower.corner.x(b)

Get the \(x\)-position of the brick lower corner.

Returns:f - \(x\)-position of the brick lower corner
Arguments:b - brick 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 optional integer(s) in the function arguments (e.g., f = brick.lower.corner(b, 1)) 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 = brick.lower.corner.y(b)
f = brick.lower.corner.z(b) (3D ONLY)