equalsEpsilon

fun equalsEpsilon(other: PerspectiveFrustum, relativeEpsilon: Double, absoluteEpsilon: Double? = definedExternally): Boolean(source)

Compares the provided PerspectiveFrustum componentwise and returns true if they pass an absolute or relative tolerance test, false otherwise.

Return

true if this and other are within the provided epsilon, false otherwise.

Parameters

other

The right hand side PerspectiveFrustum.

relativeEpsilon

The relative epsilon tolerance to use for equality testing.

absoluteEpsilon

The absolute epsilon tolerance to use for equality testing. Default value - relativeEpsilon

See also