#include #include #include "09-Exercice4-Sphere2.h" #include "09-Exercice4-Position2.h" bool testerExistenceIntersection(sphere sp1, sphere sp2) { return (calculerDistance(sp1.centre, sp2.centre) <= sp1.rayon + sp2.rayon); }