Source code for kwave.enums from enum import Enum ################################################################ # literals that link the discrete cosine and sine transform types with # their type definitions in the functions dtt1D, dtt2D, and dtt3D [docs] class DiscreteCosine(Enum): TYPE_1 = 1 TYPE_2 = 2 TYPE_3 = 3 TYPE_4 = 4 [docs] class DiscreteSine(Enum): TYPE_1 = 1 TYPE_2 = 2 TYPE_3 = 3 TYPE_4 = 4 ################################################################