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-2025 Open Science Tools Ltd.
# Distributed under the terms of the GNU General Public License (GPL).

from psychopy.plugins import PluginStub


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

Back to top