Source code for psychopy.visual.secondorder
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Part of the PsychoPy library
# Copyright (C) 2002-2018 Jonathan Peirce (C) 2019-2024 Open Science Tools Ltd.
# some code provided by Andrew Schofield
# Distributed under the terms of the GNU General Public License (GPL).
"""Stimulus object for drawing arbitrary bitmap carriers with an arbitrary
second-order envelope carrier and envelope can vary independently for
orientation, frequency and phase. Also does beat stimuli.
These are optional components that can be obtained by installing the
`psychopy-visionscience` extension into the current environment.
"""
from psychopy.tools.pkgtools import PluginStub
class EnvelopeGrating(
PluginStub,
plugin="psychopy-visionscience",
doclink="https://psychopy.github.io/psychopy-visionscience/coder/EnvelopeGrating"
):
pass
[docs]class EnvelopeGrating:
"""
`psychopy.visual.EnvelopeGrating` is now located within the `psychopy-visionscience` plugin. You
can find the documentation for it
`here <https://psychopy.github.io/psychopy-visionscience/coder/EnvelopeGrating>`_
"""
if __name__ == "__main__":
pass
Back to top