Re: [PD] cartopol~ outputs inverted phases (bug report)

2012-01-30 Thread Hans-Christoph Steiner
Fixed with this commit: http://pure-data.svn.sourceforge.net/viewvc/pure-data?view=revisionrevision=15927 .hc On Dec 16, 2011, at 10:21 PM, Mike Moser-Booth wrote: Here's a screenshot comparing cyclone's and Max's versions, if it helps. [cyclone/cartopol] is the same as the one in Max, but

Re: [PD] cartopol~ outputs inverted phases (bug report)

2011-12-16 Thread IOhannes zmölnig
On 12/16/2011 01:05 AM, Alexandre Torres Porres wrote: oops, I guess I didnt understand you then. well, I tried myself, and in max [cartopol~] matches [cartopol], That is; they both give same results in MAX. Now in Pd, they don't match, [cartopol~] gives inverted phases, but [cartopol] in

Re: [PD] cartopol~ outputs inverted phases (bug report)

2011-12-16 Thread Alexandre Torres Porres
The [cartopol] I use in Pd is the one that comes with the latest Pd-Extended, in the cyclone folder. cheers ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] cartopol~ outputs inverted phases (bug report)

2011-12-15 Thread Hans-Christoph Steiner
It sounds like the best approach here might be to just make newer version of those objects that do it correctly. the 'cyclone' library's core goal is to be a clone of Max/MSP objects, so cartopol~ and poltocart~ from cyclone should behave just like Max/MSP's, bugs and all. Other libraries

Re: [PD] cartopol~ outputs inverted phases (bug report)

2011-12-15 Thread Jonathan Wilkes
~ outputs inverted phases (bug report) It sounds like the best approach here might be to just make newer version of those objects that do it correctly.  the 'cyclone' library's core goal is to be a clone of Max/MSP objects, so cartopol~ and poltocart~ from cyclone should behave just like Max

Re: [PD] cartopol~ outputs inverted phases (bug report)

2011-12-15 Thread Hans-Christoph Steiner
confirm that these bugs exist in Max/MSP? -Jonathan From: Hans-Christoph Steiner h...@at.or.at To: Alexandre Torres Porres por...@gmail.com Cc: pd-lista puredata pd-list@iem.at Sent: Thursday, December 15, 2011 4:34 PM Subject: Re: [PD] cartopol~ outputs inverted phases (bug report

Re: [PD] cartopol~ outputs inverted phases (bug report)

2011-12-15 Thread Alexandre Torres Porres
-list@iem.at *Sent:* Thursday, December 15, 2011 4:34 PM *Subject:* Re: [PD] cartopol~ outputs inverted phases (bug report) It sounds like the best approach here might be to just make newer version of those objects that do it correctly. the 'cyclone' library's core goal is to be a clone of Max

Re: [PD] cartopol~ outputs inverted phases (bug report)

2011-12-15 Thread Hans-Christoph Steiner
-Christoph Steiner h...@at.or.at To: Alexandre Torres Porres por...@gmail.com Cc: pd-lista puredata pd-list@iem.at Sent: Thursday, December 15, 2011 4:34 PM Subject: Re: [PD] cartopol~ outputs inverted phases (bug report) It sounds like the best approach here might be to just make newer version

Re: [PD] cartopol~ outputs inverted phases (bug report)

2011-12-15 Thread Alexandre Torres Porres
@iem.at *Sent:* Thursday, December 15, 2011 4:34 PM *Subject:* Re: [PD] cartopol~ outputs inverted phases (bug report) It sounds like the best approach here might be to just make newer version of those objects that do it correctly. the 'cyclone' library's core goal is to be a clone of Max/MSP

Re: [PD] cartopol~ outputs inverted phases (bug report)

2011-12-15 Thread Hans-Christoph Steiner
: Hans-Christoph Steiner h...@at.or.at To: Alexandre Torres Porres por...@gmail.com Cc: pd-lista puredata pd-list@iem.at Sent: Thursday, December 15, 2011 4:34 PM Subject: Re: [PD] cartopol~ outputs inverted phases (bug report) It sounds like the best approach here might be to just make newer

Re: [PD] cartopol~ outputs inverted phases (bug report)

2011-12-14 Thread Alexandre Torres Porres
I made a report as nobody 2011/12/14 Alexandre Torres Porres por...@gmail.com Hi there, just noticed that [cartopol~] outputs phases that are negative when they should be positive and vice versa. this is in comparison to [cartopol] and even [atan2~] or [expr~ atan2($v2, $v1)] cheers

Re: [PD] cartopol~ outputs inverted phases (bug report)

2011-12-14 Thread Mathieu Bouchard
Le 2011-12-14 à 14:20:00, Alexandre Torres Porres a écrit : Hi there, just noticed that [cartopol~] outputs phases that are negative when they should be positive and vice versa. this is in comparison to [cartopol] and even [atan2~] or [expr~ atan2($v2, $v1)] Looking at the source code of

Re: [PD] cartopol~ outputs inverted phases (bug report)

2011-12-14 Thread Mathieu Bouchard
Le 2011-12-14 à 14:36:00, Alexandre Torres Porres a écrit : nevertheless, output here is different, as I described Wait, I missed an unexpected minus sign on a different line. Yes, the result is different, because [cyclone/cartopol~] does this instead :  [expr~ hypot($v1,-$v2) ;

Re: [PD] cartopol~ outputs inverted phases (bug report)

2011-12-14 Thread Alexandre Torres Porres
I dont have hypot in expr, by the way... cheers 2011/12/14 Mathieu Bouchard ma...@artengine.ca Le 2011-12-14 à 14:36:00, Alexandre Torres Porres a écrit : nevertheless, output here is different, as I described Wait, I missed an unexpected minus sign on a different line. Yes, the result

Re: [PD] cartopol~ outputs inverted phases (bug report)

2011-12-14 Thread Mathieu Bouchard
Le 2011-12-14 à 14:42:00, Alexandre Torres Porres a écrit : I dont have hypot in expr, by the way...cheers Oh, sorry. It's a standard libm function. It's also in [#expr]. But in [expr] or [expr~], you can also do it easily : [expr~ sqrt($v1*$v1+$v2*$v2)]

Re: [PD] cartopol~ outputs inverted phases (bug report)

2011-12-14 Thread Alexandre Torres Porres
by the way, [poltocar~] needs to be revised as well, since it's synchronized to [cartopol~]'s inverted phases. cheers 2011/12/14 Mathieu Bouchard ma...@artengine.ca Le 2011-12-14 à 14:42:00, Alexandre Torres Porres a écrit : I dont have hypot in expr, by the way...cheers Oh, sorry. It's