equals

open operator override fun equals(other: Any?): Boolean

Returns true if this triangle is equal with the given one.

Note: unlike the structural equals override, this mirrors three.js's Triangle.equals(triangle) (corner-by-corner value comparison, non-null arg).

Return

Whether this triangle is equal with the given one.

Parameters

triangle

The triangle to test for equality.