Plan 9 from Bell Labs’s /usr/web/sources/contrib/maht/inferno/module/fft_seq.m

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.



# fft_seq.b 

FFT_seq : module {
	PATH : con "/dis/lib/fft_seq.dis";
	init: fn(nil: ref Draw->Context, nil: list of string);

	Sequence : adt {
		offset : big;
		directory : string;
		framecount : big;
		samples : int;

		scan : fn(s : self ref Sequence);
	#	sample : fn(s : self ref Sequence, freq, offset : big) : int;
	};

	new_sequence : fn(directory : string) : ref Sequence;

};


Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.