From 54d63f50885bdaec3dab85d251faf0df2bb3ad37 Mon Sep 17 00:00:00 2001 From: micuat Date: Fri, 6 Nov 2020 12:24:38 +0100 Subject: [PATCH] param --- zoneb/bin/data/settings.xml | 8 ++++---- zoneb/bin/data/shaders/particles/draw.frag | 2 +- zoneb/src/ofApp.cpp | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/zoneb/bin/data/settings.xml b/zoneb/bin/data/settings.xml index bc0a73d..ac7a4dc 100644 --- a/zoneb/bin/data/settings.xml +++ b/zoneb/bin/data/settings.xml @@ -1,9 +1,9 @@ - 61.2245, -12.2449 - 1.7965 - video3 - 7 + 54.0816, 3.06123 + 1.724 + video1 + 8 1 0 21 diff --git a/zoneb/bin/data/shaders/particles/draw.frag b/zoneb/bin/data/shaders/particles/draw.frag index d3869d8..94f4091 100755 --- a/zoneb/bin/data/shaders/particles/draw.frag +++ b/zoneb/bin/data/shaders/particles/draw.frag @@ -126,7 +126,7 @@ void main() alpha *= 0.075; } else { - alpha *= 0.15; + alpha *= 0.3; } if(gPos.z > -200) { diff --git a/zoneb/src/ofApp.cpp b/zoneb/src/ofApp.cpp index f1f1f85..3320106 100644 --- a/zoneb/src/ofApp.cpp +++ b/zoneb/src/ofApp.cpp @@ -130,7 +130,7 @@ void ofApp::setupParticles() void ofApp::setupGui() { gui.setup("ZONE B", "settings.xml"); // most of the time you don't need a name - gui.add(registrationXY.setup("XY", {-208, -257}, {-400, -400}, {400, 400})); + gui.add(registrationXY.setup("XY", {-9, -9}, {-100, -100}, {100, 100})); gui.add(registrationScale.setup("scale", 2.0, 0.1, 3)); gui.add(v4l2Delay.setup("thermo delay", 0, 0, 59)); gui.add(captureDeviceName.setup("device", "video3"));