FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
processing-sound/src/processing/sound/HighPass.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
/
HighPass.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (18 loc) · 458 Bytes
Breadcrumbs
processing-sound
/
src
/
processing
/
sound
/
HighPass.java
Copy path
File metadata and controls
23 lines (18 loc) · 458 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
23
package
processing
.
sound
;
import
com
.
jsyn
.
unitgen
.
FilterHighPass
;
import
processing
.
core
.
PApplet
;
/**
* This is a high pass filter.
* @webref Effects:HighPass
* @webBrief This is a high pass filter.
* @param parent PApplet: typically use "this"
**/
public
class
HighPass
extends
Filter
<
FilterHighPass
> {
public
HighPass
(
PApplet
parent
) {
super
(
parent
);
}
@
Override
protected
FilterHighPass
newInstance
() {
return
new
FilterHighPass
();
}
}
Back
|
FazBrowse Home
|
New Git URL