added polar coords

This commit is contained in:
Lauchmelder 2022-02-19 15:07:05 +01:00
parent d245c7fbf5
commit e9ea04d0ea
No known key found for this signature in database
GPG key ID: C2403C69D78F011D
3 changed files with 43 additions and 2 deletions

View file

@ -94,15 +94,42 @@ void Application::Launch()
// Render ImGui window // Render ImGui window
ImGui::Begin("Julia Set Properties"); ImGui::Begin("Julia Set Properties");
ImGui::AlignTextToFramePadding();
ImGui::SliderInt("Max Iterations", (int*)&props.maxIterations, 10, 1000); ImGui::SliderInt("Max Iterations", (int*)&props.maxIterations, 10, 1000);
ImGui::SliderFloat("Color Threshold", &props.iterationColorCutoff, 10, 1000); ImGui::SliderFloat("Color Threshold", &props.iterationColorCutoff, 10, 1000);
ImGui::SliderInt("Texture Width", (int*)&props.textureWidth, 480, 2560); ImGui::SliderInt("Texture Width", (int*)&props.textureWidth, 480, 2560);
ImGui::SliderFloat2("c", props.c, -1.5f, 1.5f); if (ImGui::Button(props.isPolar ? "Polar" : "Cartesian"))
props.isPolar = !props.isPolar;
if (!props.isPolar)
{
ImGui::SliderFloat("c (x)", &props.c[0], -1.5f, 1.5);
ImGui::SliderFloat("c (y)", &props.c[1], -1.5f, 1.5);
}
else
{
ImGui::SliderFloat("c (r)", &props.c[0], 0, 2.0f);
ImGui::SliderFloat("c (phi)", &props.c[1], 0, 3.1415926535f * 2.0f);
}
ImGui::Separator();
// Danger zone
ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(1.0f, 0.1f, 0.1f, 1.0f));
ImGui::TextWrapped("Clicking the following button will set the compute shader precision to double. Depending on the other parameters this can lead to an extremely expensive workload that will lag the app in the best case, or timeout your GPU in the worst case.");
ImGui::PopStyleColor();
ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(1.0f, 0.25f, 0.25f, 1.0f));
ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(1.0f, 0.35f, 0.35f, 1.0f));
ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(1.0f, 0.1f, 0.1f, 1.0f));
if (ImGui::Button(props.doublePrecision ? "Double Precision" : "Single Precision")) if (ImGui::Button(props.doublePrecision ? "Double Precision" : "Single Precision"))
props.doublePrecision = !props.doublePrecision; props.doublePrecision = !props.doublePrecision;
ImGui::PopStyleColor();
ImGui::PopStyleColor();
ImGui::PopStyleColor();
ImGui::Separator(); ImGui::Separator();

View file

@ -26,6 +26,7 @@ Canvas::Canvas() :
properties.c[0] = -0.835; properties.c[0] = -0.835;
properties.c[1] = -0.2321; properties.c[1] = -0.2321;
properties.doublePrecision = false; properties.doublePrecision = false;
properties.isPolar = false;
CreateVertexArrayObject(); CreateVertexArrayObject();
CreateShaderProgram(); CreateShaderProgram();
@ -96,9 +97,21 @@ void Canvas::CalculateJuliaSet()
computeShader.Use(); computeShader.Use();
// Set uniforms for shader // Set uniforms for shader
float c[2];
if (!properties.isPolar)
{
c[0] = properties.c[0];
c[1] = properties.c[1];
}
else
{
c[0] = properties.c[0] * cosf(properties.c[1]);
c[1] = properties.c[0] * sinf(properties.c[1]);
}
glUniform2f(1, properties.xBounds[0], properties.xBounds[1]); glUniform2f(1, properties.xBounds[0], properties.xBounds[1]);
glUniform2f(2, yMin, yMax); glUniform2f(2, yMin, yMax);
glUniform2f(3, properties.c[0], properties.c[1]); glUniform2f(3, c[0], c[1]);
glUniform1i(4, properties.maxIterations); glUniform1i(4, properties.maxIterations);
glUniform1f(5, properties.iterationColorCutoff); glUniform1f(5, properties.iterationColorCutoff);

View file

@ -13,6 +13,7 @@ struct JuliaProperties
uint32_t textureWidth; uint32_t textureWidth;
float c[2]; float c[2];
bool doublePrecision; bool doublePrecision;
bool isPolar;
}; };
struct WorkProperties struct WorkProperties