Skip to contents

Check collision between two spheres.

Usage

check_collision_spheres(center_1, radius_1, center_2, radius_2)

Arguments

center_1

A numeric vector of length 3.

radius_1

A number.

center_2

A numeric vector of length 3.

radius_2

A number.

Value

A logical

Note

This function has been auto-generated from the following Raylib function definition:

bool CheckCollisionSpheres(Vector3 center1, float radius1, Vector3 center2, float radius2);