File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ static const mp_arg_t note_properties[] = {
42
42
//| envelope: Optional[Envelope] = None,
43
43
//| amplitude: BlockInput = 1.0,
44
44
//| bend: BlockInput = 0.0,
45
- //| filter: Optional[Biquad ] = None,
45
+ //| filter: Optional[AnyBiquad ] = None,
46
46
//| ring_frequency: float = 0.0,
47
47
//| ring_bend: float = 0.0,
48
48
//| ring_waveform: Optional[ReadableBuffer] = None,
@@ -86,7 +86,7 @@ MP_PROPERTY_GETSET(synthio_note_frequency_obj,
86
86
(mp_obj_t )& synthio_note_get_frequency_obj ,
87
87
(mp_obj_t )& synthio_note_set_frequency_obj );
88
88
89
- //| filter: Optional[Biquad ]
89
+ //| filter: Optional[AnyBiquad ]
90
90
//| """If not None, the output of this Note is filtered according to the provided coefficients.
91
91
//|
92
92
//| Construct an appropriate filter by calling a filter-making method on the
Original file line number Diff line number Diff line change 34
34
//|
35
35
//|
36
36
37
+ //| AnyBiquad = Biquad | BlockBiquad
38
+ //|
37
39
//| class EnvelopeState:
38
40
//| ATTACK: EnvelopeState
39
41
//| """The note is in its attack phase"""
You can’t perform that action at this time.
0 commit comments