Description:

Uses RhinoMath.ZeroTolerance for IsTiny calculation.

Syntax:
public bool IsTiny()
Returns:
Type: bool
True if vector is very small, otherwise false.
Available since:
5.0

Description:

Determines whether a vector is very short.

Syntax:
public bool IsTiny(
double tolerance
)
Parameters:
  • tolerance
  • Type: double
  • A nonzero value used as the coordinate zero tolerance. .
Returns:
Type: bool
(Math.Abs(X) <= tiny_tol) AND (Math.Abs(Y) <= tiny_tol) AND (Math.Abs(Z) <= tiny_tol).
Available since:
5.0

Nothing found