Skip to content

Commit 81ff14f

Browse files
committed
Improvments for Qt 4.8.7
1 parent e732906 commit 81ff14f

34 files changed

+515
-737
lines changed

Examples/Fractals.iannix

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,12 @@ function addCurve(recursion, start, end) {
7878
run("setWidth current 2");
7979

8080
//Add a trigger
81-
run("add trigger " + (2000 + index));
82-
run("setSize current 2");
83-
run("setGroup current triggers");
84-
run("setPos current " + ((end.x-start.x)/2 + start.x) + " " + ((end.y-start.y)/2 + start.y) + " 0");
81+
if(index % 5 == 4) {
82+
run("add trigger " + (2000 + index));
83+
run("setSize current 2");
84+
run("setGroup current triggers");
85+
run("setPos current " + ((end.x-start.x)/2 + start.x) + " " + ((end.y-start.y)/2 + start.y) + " 0");
86+
}
8587

8688
//Recursivity on segments
8789
addCurve(recursion + 1, {x: start.x, y: start.y} , {x: x1 + start.x, y: y1 + start.y});

Examples/Performance - Pulsar MF 2014.iannix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ function makeWithScript() {
5050
run("add cursor " + (curvesIndex+1));
5151
run("setGroup current historic");
5252
run("setCurve current lastCurve");
53-
run("setDepth current 0");
53+
run("setDepth current 0.001");
5454
run("setWidth current 0.1");
5555
run("setActive current 1");
5656
run("setSpeed current auto 60");
@@ -59,6 +59,7 @@ function makeWithScript() {
5959
//run("setColorActive current 255 255 255 255");
6060
//run("setColorInactive current 70 70 70 255");
6161
run("setMessage current 20, osc://ip_out:port_out/cursor cursor_id cursor_group_id cursor_value_x cursor_value_y cursor_value_z cursor_xPos cursor_yPos cursor_zPos, osc://ip_out:57121/cursor cursor_id cursor_value_y");
62+
//run("setBoundsSource current -11 -4.75 -4.25 4");
6263
}
6364

6465

@@ -187,6 +188,7 @@ function drawMagneticDirection() {
187188
run("setDepth current 0.5");
188189
run("setPattern current 0 0 1");
189190
run("setColor current 255 0 0 255");
191+
run("setMessage current 20,");
190192
}
191193
}
192194
//Rotation function

Examples/Random 3D lines.iannix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function makeWithScript() {
3838
addLine();
3939

4040
//Add triggers
41-
for(var i = 0 ; i < 100 ; i++) {
41+
for(var i = 0 ; i < 20 ; i++) {
4242
run("add trigger " + (2000+i));
4343
run("setPos current " + random(-2, 2) + " " + random(-2, 2) + " " + random(-2, 2));
4444
}

Examples/Rosette.iannix

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,13 @@ function addCircle(circleIndex, center) {
6060
run("setSize current 1.5");
6161
run("setPattern current 0 0 1");
6262

63-
run("add trigger " + (2000 + circleIndex));
64-
run("setGroup current triggers");
65-
run("setPos current " + center.x + " " + center.y + " 0");
66-
run("setSize current 0.5");
67-
run("setColor current 170 180 190 255");
63+
if(circleIndex % 7 == 6) {
64+
run("add trigger " + (2000 + circleIndex));
65+
run("setGroup current triggers");
66+
run("setPos current " + center.x + " " + center.y + " 0");
67+
run("setSize current 0.5");
68+
run("setColor current 170 180 190 255");
69+
}
6870
}
6971

7072

Examples/Shape with Xenakis Score.iannix

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,12 @@ function addLine(lineIndex, start, end) {
5454
run("setSpeed current " + (1 + lineIndex / lineMax));
5555
run("setBoundsSource current -7 12 -7 7");
5656

57-
run("add trigger " + (2000 + lineIndex));
58-
run("setPos current " + end.x + " " + end.y + " 0");
59-
run("setGroup current triggers");
60-
run("setSize current 0.8");
57+
if(lineIndex % 7 == 6) {
58+
run("add trigger " + (2000 + lineIndex));
59+
run("setPos current " + end.x + " " + end.y + " 0");
60+
run("setGroup current triggers");
61+
run("setSize current 0.8");
62+
}
6163
}
6264

6365

Examples/Torus.iannix

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,14 @@ function addCircle(circleIndex, center) {
6363
run("setColorHue current " + range(percent, 0, 200) + " 100 192 255");
6464
run("setWidth current 2");
6565
run("setPattern current 0 0 1");
66-
run("add trigger " + (2000 + circleIndex));
67-
run("setGroup current triggers");
68-
run("setPos current " + (center.x*1.7) + " " + (center.y*1.7) + " 0");
69-
run("setSize current 0.5");
70-
run("setColorHue current " + rangeMid(percent, 0, 40, 0) + " 255 255 255");
66+
67+
if(circleIndex % 7 == 6) {
68+
run("add trigger " + (2000 + circleIndex));
69+
run("setGroup current triggers");
70+
run("setPos current " + (center.x*1.7) + " " + (center.y*1.7) + " 0");
71+
run("setSize current 0.5");
72+
run("setColorHue current " + rangeMid(percent, 0, 40, 0) + " 255 255 255");
73+
}
7174
}
7275

7376

IanniX.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ contains(QT_VERSION, "^4.*") {
3131
QT += widgets core gui opengl network script xml
3232
}
3333
macx {
34-
#QMAKE_LFLAGS += -F/Library/Frameworks
34+
QMAKE_LFLAGS += -F/Library/Frameworks
3535
contains(QT_VERSION, "4.7.4") {
3636
message("IanniX for Mac 32bits")
3737
DEFINES += IANNIX_32

Patches/Max/0.wav

-10.1 KB
Binary file not shown.

Patches/Max/1.wav

-7.05 KB
Binary file not shown.

Patches/Max/10.wav

-196 KB
Binary file not shown.

0 commit comments

Comments
 (0)