2023-10-27 06:28:27 CST W43D5

This commit is contained in:
aggresss
2023-10-27 06:28:28 +08:00
parent babffde433
commit 7a0773ebf2
57 changed files with 4729 additions and 2853 deletions

View File

@@ -11,12 +11,12 @@ type FFTSample = C.FFTSample
// FFTComplex
type FFTComplex C.struct_FFTComplex
// Custom: GetRe gets `FFTComplex.re` value.
// GetRe gets `FFTComplex.re` value.
func (fc *FFTComplex) GetRe() FFTSample {
return (FFTSample)(fc.re)
}
// Custom: GetIm gets `FFTComplex.im` value.
// GetIm gets `FFTComplex.im` value.
func (fc *FFTComplex) GetIm() FFTSample {
return (FFTSample)(fc.im)
}