FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
processing-sound/src/processing/sound/LowPass.java at main · processing/processing-sound · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
processing
/
processing-sound
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
49
Star
163
Code
Issues
25
Pull requests
1
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
processing-sound
/
src
/
processing
/
sound
/
LowPass.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
22 lines (17 loc) · 409 Bytes
Breadcrumbs
processing-sound
/
src
/
processing
/
sound
/
LowPass.java
Copy path
File metadata and controls
22 lines (17 loc) · 409 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package
processing
.
sound
;
import
com
.
jsyn
.
unitgen
.
FilterLowPass
;
import
processing
.
core
.
PApplet
;
/**
* This is a low pass filter.
* @webref Effects:LowPass
* @param parent PApplet: typically use "this"
**/
public
class
LowPass
extends
Filter
<
FilterLowPass
> {
public
LowPass
(
PApplet
parent
) {
super
(
parent
);
}
@
Override
protected
FilterLowPass
newInstance
() {
return
new
FilterLowPass
();
}
}
Back
|
FazBrowse Home
|
New Git URL