diff --git a/src/consts.h b/src/consts.h index b9d11dc..31063c6 100644 --- a/src/consts.h +++ b/src/consts.h @@ -34,7 +34,7 @@ const float MAX_SPEED = 14.0f; // --------------------------- Raycasting Constants --------------------------- const float minAllowedDensity = 0.001f; -const float stepSize = 0.002; +const float stepSize = 0.2; // --------------------------- Illumination Constants --------------------------- diff --git a/src/gui/input/Widget.cpp b/src/gui/input/Widget.cpp index bcc42e2..57d4bd4 100644 --- a/src/gui/input/Widget.cpp +++ b/src/gui/input/Widget.cpp @@ -203,10 +203,10 @@ void Widget::render() { } void Widget::resetCamera() { - this->cameraPos = Point3::init(69.5f, -19.5f, 59.5f); // Camera for partially trimmed data set - this->pitch = -19.5; - this->yaw = -4.825; - this->roll = -0.0; + this->cameraPos = Point3::init(62.5f, 145.5f, -71.0f); // Camera for partially trimmed data set + this->pitch = -18.165f; + this->yaw = -1.605f; + this->roll = -0.0f; this->cameraDir = Vec3::getDirectionFromEuler(pitch, yaw, roll); } diff --git a/src/main.cu b/src/main.cu index 7bf3789..912c8d0 100644 --- a/src/main.cu +++ b/src/main.cu @@ -43,7 +43,7 @@ void getSpeed(std::vector& speedData, int idx = 0) { int main() { std::vector data; - getTemperature(data, 254); // 20121028 + getTemperature(data, 301); // 20121028 // getSpeed(data, 254); // 20121028 std::cout << "DATA size: " << data.size() << std::endl;