Source code for psychopy.visual.patch

#!/usr/bin/env python
# -*- coding: utf-8 -*-

'''Deprecated (as of version 1.74.00):
please use the :class:`~psychopy.visual.GratingStim`
or the :class:`~psychopy.visual.ImageStim` classes.'''

# Part of the PsychoPy library
# Copyright (C) 2002-2018 Jonathan Peirce (C) 2019-2024 Open Science Tools Ltd.
# Distributed under the terms of the GNU General Public License (GPL).

from psychopy.tools.pkgtools import PluginStub


[docs]class PatchStim( PluginStub, plugin="psychopy-legacy", doclink="https://psychopy.github.io/psychopy-legacy/coder/visual/PatchStim" ): pass

Back to top