Version 0.55.1

selectbox

A rectangular selection volume.

Signatures

  •   selectbox( float minX, float maxX, float minY, float maxX, float minZ, float maxZ )

Details

Defines a rectangular axis-aligned space section that can be used as selection input for certain functions.

Example

 selectbox s( -1, 3, 0.5, 1.7, -0.5, 2.5 )
 echo( s.maxy )
 make (box) s
 

Output

 1.7
 

Casts To

string
selection
box

Members

float minx

Allows to read/write the lower boundary in X direction.

float maxx

Allows to read/write the upper boundary in X direction.

float miny

Allows to read/write the lower boundary in Y direction.

float maxy

Allows to read/write the upper boundary in Y direction.

float minz

Allows to read/write the lower boundary in Z direction.

float maxz

Allows to read/write the upper boundary in Z direction.

Parameters

minX

Lower boundary of the selectbox in X direction.

maxX

Upper boundary of the selectbox in X direction.

minY

Lower boundary of the selectbox in Y direction.

maxY

Upper boundary of the selectbox in Y direction.

minZ

Lower boundary of the selectbox in Z direction.

maxZ

Upper boundary of the selectbox in Z direction.

See also

🗙

Search results for