コード例 #1
0
ファイル: OpenAL_HRTF.py プロジェクト: shaix/PyAL
 def _set_position(self, pos):
     self._position = pos
     x, y, z = map(int, pos)
     al.alListener3f(al.AL_POSITION, x, y, z)
コード例 #2
0
ファイル: OpenAL.py プロジェクト: anden3/Python
 def _set_position(self, pos):
     self._position = pos
     x, y, z = map(int, pos)
     al.alListener3f(al.AL_POSITION, x, y, z)
コード例 #3
0
ファイル: __init__.py プロジェクト: jcockayne/sympy-rkern
 def _set_position(self, position):
     x, y, z = position
     al.alListener3f(al.AL_POSITION, x, y, z)
     self._position = position
コード例 #4
0
ファイル: __init__.py プロジェクト: rkern/sympy-rkern
 def _set_position(self, position):
     x, y, z = position
     al.alListener3f(al.AL_POSITION, x, y, z)
     self._position = position
コード例 #5
0
ファイル: __init__.py プロジェクト: certik/sympy-oldcore
 def _set_velocity(self, velocity):
     x, y, z = velocity
     al.alListener3f(al.AL_VELOCITY, x, y, z)
     self._velocity = velocity