iannix.send(“add”, « curve, ”id#”);
iannix.send(“add”, « trigger, ”id#”);
iannix.send(“add”, « cursor, ”id#”);
🙂
But Processing say that in the second parameter is expecting a float value not a string, and return an error, that´s why I thought they were represented by numbers, when I write any number it works but only triggers…what I’m missing here ?
Yes sorry I posted without testing before. In fact, you have to send OSC Messages using OSC P5. You can have some help in the
OscMessage iannixMessage = new OscMessage("/iannix/add");
iannixMessage.add("curve");
iannixMessage.add(id);
…
oscManager.send(iannixMessage, iannixLocation);
assuming oscManager
and iannixLocation
have been declared. See samples in IanniX class provided with the example.
Hello,
I am also interested in this topic.
I am using max/msp and would like to be able to create triggers in it, that have properties determined by generative patch which runs in max/msp.
Any hints much appreciated.
Sorry… Of course I want to create triggers in Iannix… based on information from max.
Like this (take care of right-to-left position). To discover all the OSC commands, open the Help panel in IanniX and make some stuff (add trigger, change position, add label…); all the OSC messages will be displayed in realtime in the help window!
{
"boxes" : [ {
"box" : {
"maxclass" : "button",
"patching_rect" : [ 86.0, 48.0, 20.0, 20.0 ],
"outlettype" : [ "bang" ],
"id" : "obj-6",
"numinlets" : 1,
"numoutlets" : 1
}
}
, {
"box" : {
"maxclass" : "message",
"text" : "/iannix/setPos current 2 3 0",
"fontsize" : 12.0,
"presentation_rect" : [ 89.0, 102.0, 0.0, 0.0 ],
"patching_rect" : [ 86.0, 102.0, 156.0, 18.0 ],
"outlettype" : [ "" ],
"id" : "obj-4",
"fontname" : "Arial",
"numinlets" : 2,
"numoutlets" : 1
}
}
, {
"box" : {
"maxclass" : "message",
"text" : "/iannix/add trigger auto",
"fontsize" : 12.0,
"patching_rect" : [ 126.0, 126.0, 133.0, 18.0 ],
"outlettype" : [ "" ],
"id" : "obj-3",
"fontname" : "Arial",
"numinlets" : 2,
"numoutlets" : 1
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "udpsend 127.0.0.1 1234",
"fontsize" : 12.0,
"patching_rect" : [ 86.0, 171.0, 140.0, 20.0 ],
"id" : "obj-1",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 0
}
}
],
"lines" : [ {
"patchline" : {
"source" : [ "obj-6", 0 ],
"destination" : [ "obj-3", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-6", 0 ],
"destination" : [ "obj-4", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-4", 0 ],
"destination" : [ "obj-1", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-3", 0 ],
"destination" : [ "obj-1", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
],
"appversion" : {
"major" : 6,
"minor" : 1,
"revision" : 10,
"architecture" : "x86"
}
}
Bon, j’ai tout perdu le contenu de mon disque dur l’hiver passé, donc quelque chose comme un an de travail.
MAIS, sur une autre note, les formes sont en mouvement, grace a un outil max msp qui fait le pont entre ableton et Iannix pour travailler sur les param(1…x)
ca ressemble a ca
<iframe src= »https://player.vimeo.com/video/143937527″ width= »500″ height= »281″ frameborder= »0″ webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> <p>Bassilus C – ULFO from Jerome Guilleaume on Vimeo.</p>
Hello,
Thanks for Iannix it’s a great piece of software! I want to leave an installation unattended with a Iannix composition timing everything, I would like to start it up with a given .iannix file and run it on startup, headless if at all possible.
I have tried the typical passing of the file name as first CLI argument with no success, here’s the output:
$ ../IanniX.app/Contents/MacOS/IanniX /Applications/IanniX/Examples/Spirographe.iannix
Command line syntax : ./IanniX.app/Contents/MacOS/IanniX <file path>
Pathes
Documents : /Users/blarg/Documents/IanniX
Application: /Applications/IanniX
Current : /Applications/IanniX/Examples
Arguments
0= ../IanniX.app/Contents/MacOS/IanniX
1= /Applications/IanniX/Examples/Spirographe.iannix
Last update : 03/11/2015 00:31:10 (should update each 1 day(s))
Ready to start!
==> OPEN (mode 1) /Users/zilog/Documents/IanniX/New score.iannix
But it always ends up opening a New score instead of the one provided in the command line. What could I be doing wrong?
Hi!
It’ll be fixed in our next release. You can use the command « open » if you want.
open /Applications/IanniX/Examples/Spirographe.iannix
Hi!
It’ll be fixed in our next release. You can use the command « open » if you want.
open /Applications/IanniX/Examples/Spirographe.iannix
Aïe pour les disques durs…
Mais super boulot, bravo. Je viens de re-partager le lien sur Facebook (on l’avait RT seulement) + le lien de l’album au passage 🙂
petite question interface, est-ce qu’il y a une facon d’avoir plus de précision dans l’épaisseur ou la minceur des lignes? En ce moment, quand les formes sont activées, les lignes sont trop épaises pour le coté etheral que je veux donner aux formes mais sont trop transparentes pour les rendus, sans passer par des filtres. Ce que je fais en ce moment c’est que je double les equations pour qu’elles aient plus de luminosité, tout en restant minces. Ca marche tant que c’est des screenshots, mais ca va poser un probleme quand je vais les mettre en mouvement…
Vous avez une idée?
It´s working ! Here´s my code with a moving point:
———–
a = a + 1;
float move1 = map(sin(a), -1, 1,-10,20);
float move2 = map(cos(a), -1, 1,-3,13);
iannix.send(« setpointat », 0, 2, move1, move2 );
if(keyPressed){
if(key == ‘q’){
OscMessage iannixMessage = new OscMessage(« /iannix/add »);
iannixMessage.add(« curve »);
iannixMessage.add(0);
oscManager.send(iannixMessage, iannixLocation);
}
}
————–
Now the question is: how can I choose to add a straight or a smooth curve ?
: )
Thanks !
It depends on the setPointAt arguments. In IanniX, open the Help panel and place manually a smooth curve in the score. You’ll see in the Help panel (scroll down) the exact syntax for Processing 🙂
Hmmm, tu utilises les commandes setSize
pour régler les épaisseurs et tu joues avec les transparences en réglant la couleur (setColor
), c’est bien ça ?
Question subsidiaire : Mac ou Windows ou Linux ?
© IanniX Association
Qu'est-ce que IanniX ? | Téléchargement | Showcase | Forum | Recherche | À propos
Cookie | Durée | Description |
---|---|---|
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |