1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
Utilities
==================
.. currentmodule:: pyo
Functions in this category
------------------------------
- :py:func:`example` : Execute the documentation example of the object given as an argument.
- :py:func:`class_args` : Returns the signature of a pyo class or function.
- :py:func:`getVersion` : Returns the version number of the current pyo installation.
- :py:func:`getPrecision` : Returns the current sample precision as an integer.
- :py:func:`getPyoKeywords` : Returns a list of every keywords (classes and functions) of pyo.
- :py:func:`getPyoExamples` : Returns a listing of the examples, as a dictionary, installed with pyo.
- :py:func:`withPortaudio` : Returns True if pyo is built with portaudio support.
- :py:func:`withPortmidi` : Returns True if pyo is built with portmidi support.
- :py:func:`withJack` : Returns True if pyo is built with jack support.
- :py:func:`withCoreaudio` : Returns True if pyo is built with coreaudio support.
- :py:func:`withOSC` : Returns True if pyo is built with OSC (Open Sound Control) support.
- :py:func:`convertStringToSysEncoding` : Convert a string to the current platform file system encoding.
- :py:func:`convertArgsToLists` : Convert all arguments to list if not already a list or a PyoObjectBase.
- :py:func:`wrap` : Return value at position i from arg with wrap around arg length.
*example*
---------------------------------
.. autofunction:: example
*class_args*
---------------------------------
.. autofunction:: class_args
*getVersion*
---------------------------------
.. autofunction:: getVersion
*getPrecision*
---------------------------------
.. autofunction:: getPrecision
*getPyoKeywords*
---------------------------------
.. autofunction:: getPyoKeywords
*getPyoExamples*
---------------------------------
.. autofunction:: getPyoExamples
*withPortaudio*
---------------------------------
.. autofunction:: withPortaudio
*withPortmidi*
---------------------------------
.. autofunction:: withPortmidi
*withJack*
---------------------------------
.. autofunction:: withJack
*withCoreaudio*
---------------------------------
.. autofunction:: withCoreaudio
*withOSC*
---------------------------------
.. autofunction:: withOSC
*convertStringToSysEncoding*
---------------------------------
.. autofunction:: convertStringToSysEncoding
*convertArgsToLists*
---------------------------------
.. autofunction:: convertArgsToLists
*wrap*
---------------------------------
.. autofunction:: wrap
|