This commit is contained in:
micuat 2020-11-06 12:24:38 +01:00
parent 657c3a8aaf
commit 54d63f5088
3 changed files with 6 additions and 6 deletions

View file

@ -1,9 +1,9 @@
<?xml version="1.0"?>
<ZONE_B>
<XY>61.2245, -12.2449</XY>
<scale>1.7965</scale>
<device>video3</device>
<thermo_delay>7</thermo_delay>
<XY>54.0816, 3.06123</XY>
<scale>1.724</scale>
<device>video1</device>
<thermo_delay>8</thermo_delay>
<blend_add>1</blend_add>
<render_times>0</render_times>
<trace_times>21</trace_times>

View file

@ -126,7 +126,7 @@ void main()
alpha *= 0.075;
}
else {
alpha *= 0.15;
alpha *= 0.3;
}
if(gPos.z > -200) {

View file

@ -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"));