lol well in a pattern generator i'm expecting a procedural logic.
As i tryed to explain in the example, let's say that my "procedural logic" will be 3,6,4,-5, the ecuation is "+" and the starting is "1"
Then this in a loop starting at 1 may return:
1,
(1+3)= 4,
(4+6) = 10,
(10+4)=14,
(14+-5)= 9,
(9+3)=12,
(12+6)=18,
22,
17.... and so on
A pattern is some kind mathematic or logic that you can follow or find.
So this plugin should:
Based on a premade or Generated seed : 3,6,4,-5
Using a conector or ecuation: +
Create a loop, and
Find a result in X position: Example, in the 6th node = 12
Also, this is not necesary matematical, in the same way you did in this pluggin, a number can be a Letter, so if the seed is: A,C,H and the ecuation is "-"
then in this phrase "Hello i am Emmanuel Cesar and im talking too much", the result is
Node1: "Hello i m Emmanuel Cesar and im talking too much"
Node2: "Hello i m Emmnuel esar and im talking too much"
Node3: "ello i m Emmnuel esar and im talking too muc"
because the letters are substracted in that order, so if you give me only those nodes i can find the pattern by just looking at what is being deleted, and by logic i can say "The letters are substracted in the order A-C-H"
i don't know if you understand my point