[Csnd] superformula to sound
Date | 2018-07-16 21:57 |
From | Richard |
Subject | [Csnd] superformula to sound |
I just came across this concept of the superformula, to create all sorts of graphical figures with 6 parameter only. It should be possible to apply this to sound as well, I think. The only thing is, the superformula works in polar coordinates. We know that in polar coordinates a circle represents a sine, so how would one convert the many possible shapes of the superformula to a time domain function? https://www.youtube.com/watch?v=u6arTXBDYhQ Richard Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here |
Date | 2018-07-16 22:26 |
From | Hans and Laurel Mikelson |
Subject | Re: [Csnd] superformula to sound |
Hi, You could try something like this: Hans Mikelson
|
Date | 2018-07-16 23:08 |
From | Richard |
Subject | Re: [Csnd] superformula to sound |
Thanks, that is interesting to explore as well. Richard On 16/07/18 23:26, Hans and Laurel
Mikelson wrote:
Hi, |
Date | 2018-07-16 23:14 |
From | Hans and Laurel Mikelson |
Subject | Re: [Csnd] superformula to sound |
Hi Richard, I mean you can translate the polar coordinates something like: x = r*cos(t) y = r* sin(t) outs x, y Hans Mikelson
|
Date | 2018-07-16 23:44 |
From | Richard |
Subject | Re: [Csnd] superformula to sound |
Yes, I know. float r(float theta, float a, float b, float m, float n1, float
n2, float n3) { as function of theta and the other parameters. Richard
On 17/07/18 00:14, Hans and Laurel
Mikelson wrote:
Hi Richard, |
Date | 2018-07-16 23:47 |
From | Hans and Laurel Mikelson |
Subject | Re: [Csnd] superformula to sound |
Hi Richard, In the past I have converted the r value into an x y stereo pair using the standard method to go from polar to cartesian coordinates. X = r*cos(theta) and Y = r*sin(theta). Hans Mikelson
|
Date | 2018-07-17 00:05 |
From | Richard |
Subject | Re: [Csnd] superformula to sound |
Yes, this seems to work. This opens a can of possibilities.... Richard On 17/07/18 00:47, Hans and Laurel
Mikelson wrote:
Hi Richard, |