3d_fractals_cuda/sphere.cuh

18 lines
416 B
Plaintext

#ifndef SPHERE_H
#define SPHERE_H
#include "render_object.cuh"
template<class T> class sphere : public render_object<T> {
using render_object<T>::render_object;
using T3 = typename vect_t3<T>::vect_t;
public:
__device__ T distance_estimator(T3 point) const;
private:
T r_ = 1;
};
template <class T> __device__ T sphere<T>::distance_estimator(T3 point) const {
return length(point) - r_;
}
#endif