Old 01-18-2020, 08:06 AM   #1
lgz
Human being with feelings
 
Join Date: Jan 2020
Posts: 4
Default pan and delay. help!!!!!!!!!!!!

Meanwhile, in size =floor(srate*size), what's meaning of floor?
and spl0=((1-(0.01*slider3))*0.5*(in0+in1))+(0.01*slider3*delay Buffer[readPos]); What's the use of each number in this row?
lgz is offline   Reply With Quote
Old 01-18-2020, 09:44 AM   #2
Zeno
Human being with feelings
 
Zeno's Avatar
 
Join Date: Sep 2018
Location: HH
Posts: 916
Default

Quote:
Originally Posted by lgz View Post
Meanwhile, in size =floor(srate*size), what's meaning of floor?
and spl0=((1-(0.01*slider3))*0.5*(in0+in1))+(0.01*slider3*delay Buffer[readPos]); What's the use of each number in this row?
floor(x):
rounds the value to the lowest integer possible (floor(3.9)==3, floor(-3.1)==-4).


And

Code:
spl0=(
(1-(0.01*slider3))
*0.5*(in0+in1)
)
+(0.01*slider3*delay Buffer[readPos]
);
means:

Code:
left = 
100% - (1% of slider3)
* 50% of (in0+in1)
+ 1% of slider3 * delayBuffer[readPos]
;

Last edited by Zeno; 01-18-2020 at 08:48 PM.
Zeno is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 05:21 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.