blob: 7ff59a76239822af752fdf89883c3d9d3e266272 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
from cython.cimports.sin_of_square import Function
@cython.cclass
class WaveFunction(Function):
# Not available in Python-space:
offset: float
# Available in Python-space:
freq = cython.declare(cython.double, visibility='public')
# Available in Python-space, but only for reading:
scale = cython.declare(cython.double, visibility='readonly')
# Available in Python-space:
@property
def period(self):
return 1.0 / self.freq
@period.setter
def period(self, value):
self.freq = 1.0 / value
|