File: polygon.rst

package info (click to toggle)
psychopy 2020.2.10%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 44,056 kB
  • sloc: python: 119,649; javascript: 3,022; makefile: 148; sh: 125; xml: 9
file content (59 lines) | stat: -rw-r--r-- 2,235 bytes parent folder | download
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
.. _polygonComponent:

Polygon (shape) Component
-------------------------------

(added in version 1.78.00)

The Polygon stimulus allows you to present a wide range of regular geometric shapes. The basic control comes from setting the number of vertices:
    - 2 vertices give a line
    - 3 give a triangle
    - 4 give a rectangle etc.
    - a large number will approximate a circle/ellipse

The size parameter takes two values. For a line only the first is used (then use ori to specify the orientation). For triangles and rectangles the size specifies the height and width as expected. Note that for pentagons upwards, however, the size determines the width/height of the ellipse on which the vertices will fall, rather than the width/height of the vertices themselves (slightly smaller typically).

Parameters
~~~~~~~~~~~~

name : string
    Everything in a PsychoPy experiment needs a unique name. The name should contain only letters, numbers and underscores (no punctuation marks or spaces).

nVertices : integer

    The number of vertices for your shape (2 gives a line, 3 gives a triangle,... a large number results in a circle/ellipse).
    It is not (currently) possible to vary the number of vertices dynamically.

fill settings:

    Control the color inside the shape. If you set this to `None` then you will have a transparent shape (the line will remain)

line settings:

    Control color and width of the line. The line width is always specified in pixels - it does not honour the `units` parameter.

size : [w,h]
    See note above

start :
    The time that the stimulus should first appear. See :ref:`startStop` for details.

stop :
    Governs the duration for which the stimulus is presented. See :ref:`startStop` for details.

ori : degrees
    The orientation of the entire patch (texture and mask) in degrees.

pos : [X,Y]
    The position of the centre of the stimulus, in the units specified by the stimulus or window


units : deg, cm, pix, norm, or inherit from window
    See :doc:`../../general/units`


.. seealso::

	API reference for :class:`~psychopy.visual.Polygon`
	API reference for :class:`~psychopy.visual.Rect`
	API reference for :class:`~psychopy.visual.ShapeStim` #for arbitrary vertices