equals method

bool equals(
  1. Vector3 v
)

Returns true if the given 3D vector is deep equal with this 3D vector.

Implementation

bool equals(Vector3 v ) {
	return ( ( v.x == x ) && ( v.y == y ) && ( v.z == z ) );
}