warp.isinf#

warp.isinf(a: Scalar) bool#
  • Kernel

Return True if a is positive or negative infinity, otherwise return False.

Attention

This function will no longer support integer types as input. Please use float types instead.

warp.isinf(a: Vector[Any, Scalar]) bool
  • Kernel

Return True if any element of the vector a is positive or negative infinity, otherwise return False.

Attention

This function will no longer support integer types as input. Please use float types instead.

warp.isinf(a: Quaternion[Scalar]) bool
  • Kernel

Return True if any element of the quaternion a is positive or negative infinity, otherwise return False.

Attention

This function will no longer support integer types as input. Please use float types instead.

warp.isinf(a: Matrix[Any, Any, Scalar]) bool
  • Kernel

Return True if any element of the matrix a is positive or negative infinity, otherwise return False.

Attention

This function will no longer support integer types as input. Please use float types instead.