#pragma once #include "point.h" namespace SDF { class PointJitterer { public: ~PointJitterer(void); PointJitterer(unsigned int rand_seed, double jitter_box_halflength); PointJitterer(double jitter_box_halflength); Point jitter(const Point &p); private: double jitter_box_halflength; }; }