


/* A sphere's shape data is just its radius. */
#define sphDATASIZE (sizeof(double))

void sphGetIntersection(
        const isoIsometry *isom, const void *shapeData, const double p[3], 
        const double u[3], rayIntersection *inter) {
    double r = *((double *)shapeData);
    
}


