Description:

Inflates the box with equal amounts in all directions. Inflating with negative amounts may result in decreasing boxes. Invalid boxes can not be inflated.

Syntax:
public void Inflate(
double amount
)
Parameters:
  • amount
  • Type: double
  • Amount (in model units) to inflate this box in all directions.
Returns:
Type: void
Available since:
5.0

Description:

Inflate the box with custom amounts in all directions. Inflating with negative amounts may result in decreasing boxes. InValid boxes can not be inflated.

Syntax:
public void Inflate(
double xAmount,
double yAmount,
double zAmount
)
Parameters:
  • xAmount
  • Type: double
  • Amount (in model units) to inflate this box in the x direction.
  • yAmount
  • Type: double
  • Amount (in model units) to inflate this box in the y direction.
  • zAmount
  • Type: double
  • Amount (in model units) to inflate this box in the z direction.
Returns:
Type: void
Available since:
5.0

Nothing found