A class implementing a rectangle stimulus.
Methods
Create a filled rectangle.
Parameters : | size : (int, int)
position : (int, int), optional
colour : (int, int, int), optional
anti_aliasing : int, optional
|
---|
Getter for absolute_position.
Add visual noise on top of the stimulus.
This function might take very long for large stimuli.
Parameters : | grain_size : int
percentage : int
colour : (int, int, int)
|
---|---|
Returns : | time : int
|
Notes
Depending on the size of the stimulus, this method may take some time to compute!
Add a vertex to the shape.
Parameters : | xy : (int, int)
|
---|
Add a list of vertices to the shape.
Parameters : | vertex_list : (int, int)
|
---|
Getter for anti_aliasing.
Blur the shape.
This blurs the stimulus, by scaling it down and up by the factor of ‘level’. Notes —– Depending on the blur level and the size of your stimulus, this method may take some time!
Parameters : | level : int
|
---|---|
Returns : | time : int
|
Clear the stimulus surface.
Surfaces are automatically created after any surface operation (presenting, plotting, rotating, scaling, flipping etc.) and preloading. If the stimulus was preloaded, this method unloads the stimulus. This method is functionally equivalent with unload(keep_surface=False).
Returns : | time : int
|
---|
Notes
Depending on the size of the stimulus, this method may take some time to compute!
Getter for colour.
“Compress the stimulus.
This will create a temporary file on the disk where the surface of the stimululs is written to. The surface will now be read from the disk to free memory. Compressed stimuli cannot do surface operations! Preloading comressed stimuli is possible and highly recommended. Depending on the size of the stimulus, this method may take some time to compute!
Returns : | time : int
|
---|
Convert a point from shape coordinates to surface coordinates.
Parameters : | point_xy : (int, int)
|
---|
Deep copy of the visual stimulus.
Returns : | copy : deep copy of self |
---|
Notes
Depending on the size of the stimulus, this method may take some time to compute!
Decompress the stimulus.
This will decompress the stimulus. The surface will now be read from memory again. Depending on the size of the stimulus, this method may take some time to compute!
Returns : | time : int
|
---|
Surface center distance.
This method computes the distance between the surface center of this and another visual stimulus.
Parameters : | other : stimulus
|
---|---|
Returns : | dist : float
|
Removes all vertices.
Flip the stimulus.
This is a surface operation. After this, a surface will be present!
Parameters : | booleans : (bool, bool)
|
---|---|
Returns : | time : int
|
Notes
Depending on the size of the stimulus, this method may take some time to compute!
“Getter for the total native flipping.
Getter for has_surface.
Getter for id.
Check if stimulus is inside another stimulus.
Parameters : | stimulus : expyriment stimulus
mode : mode (str), optional
|
---|---|
Returns : | out : bool |
Notes
Depending on the size of the stimulus, this method may take some time to compute!
Getter for is_compressed.
DEPRECATED METHOD: Please use ‘native_overlapping_with_position’.
Getter for is_preloaded.
DEPRECATED METHOD: Please use ‘overlapping_with_shape’.
Moves the stimulus in 2D space.
When using OpenGL, this can take longer then 1ms!
Parameters : | offset : list, optional
|
---|---|
Returns : | time : int
|
Flip the shape.
Native flipping of shapes is a native operation (not a surface operation) and does therefore not go along with a quality loss. No surface will be created.
Parameters : | booleans : (bool, bool)
|
---|
Return True if the position is inside the shape.
Parameters position – Expyriment screen coordinates (tuple)
Returns : | val : bool
|
---|
Rotate the shape.
Native rotation of shape is a native operation (not a surface operation) and does therefore not go along with a quality loss. No surface will be created.
Parameters : | degree : int
|
---|
Scale the shape.
Native scaling of shapes is a native operation (not a surface operation) and does therefore not go along with a quality loss. No surface will be created.
Negative scaling values will native_flip the stimulus.
Parameters : | factors : int or (int, int)
scale_line_width : bool, optional
|
---|
Check if stimulus is overlapping with a certain position.
Parameters : | position : (int, int)
mode : mode (str), optional
|
---|---|
Returns : | out: bool : |
Notes
Depending on the size of the stimulus, this method may take some time to compute!
Return true if shape overlaps with other shape.
Parameters : | other : stimuli.Shape
|
---|---|
Returns : | val : bool
|
Check if stimulus is overlapping with another stimulus.
Parameters : | stimulus : expyriment stimulus
mode : mode (str), optional
|
---|---|
Returns : | overlapping : bool
overlap : pygame surface
|
Notes
Depending on the size of the stimulus, this method may take some time to compute!
Return the stimulus as Picture stimulus.
This will create a temporary file on the hard disk where the image is saved to.
Notes
Depending on the size of the stimulus, this method may take some time to compute!
Plot the stimulus on the surface of another stimulus.
Use this to plot more than one stimulus and to present them at the same time afterwards by presenting the stimulus on which they were plotted on.
Parameters : | stimulus : expyriment stimulus
|
---|---|
Returns : | time : int
|
Notes
Depending on the size of the stimulus, this method may take some time to compute!
Return polygon as list of tuples (x,y) in Expyriment coordinates.
In contrast to the vertex representation, the point representation takes into all the native transformations (rotation, scaling, flipping)
Returns : | val: list of tuples :
|
---|
Return polygon as list of tuples in Expyriment coordinates.
In contrast to the vertex representation, the point representation takes into all the native transformations (rotation, scaling, flipping)
Returns : | val: list of tuples :
|
---|
Getter for position.
Preload the stimulus to memory.
This will prepare the stimulus for a fast presentation. In OpenGL mode this method creates an OpenGL texture based on the surface of the stimulus. When OpenGL is switched off, this method will create a surface if it doesn’t exists yet. If stimuli are not preloaded manually, this will happen automatically during presentation. However, stimulus presentation will take some time then!
Always preload your stimuli when a timing acurate presentation is needed!
Parameters : | inhibit_ogl_compress : bool, optional
|
---|---|
Returns : | time : int
|
Notes
Depending on the size of the stimulus, this method may take some time to compute!
Present the stimulus on the screen.
This clears and updates the screen automatically. When not preloaded, depending on the size of the stimulus, this method can take some time to compute!
Parameters : | clear : bool, optional
update : bool, optional
|
---|---|
Returns : | time : int
|
Getter for rect =(top, left, bottom, right).
Remove a vertex.
Rotate the stimulus.
This is a surface operation. After this, a surface will be present! Rotating goes along with a quality loss. Thus, rotating an already rotated stimulus is not a good idea.
Parameters : | degree : int
|
---|---|
Returns : | time : int
|
Notes
Depending on the size of the stimulus, this method may take some time to compute!
“Getter for the total native rotation.
Getter for rotation_centre.
Getter for rotation_centre_display_colour.
Save the stimulus as image.
Parameters : | filename : str
|
---|
Notes
Depending on the size of the stimulus, this method may take some time to compute!
Scale the stimulus.
This is a surface operation. After this, a surface will be present! Negative scaling values will flip the stimulus. Scaling goes along with a quality loss. Thus, scaling an already scaled stimulus is not a good idea.
Parameters : | factors : (int, int) or float
|
---|---|
Returns : | time : int
|
Notes
Depending on the size of the stimulus, this method may take some time to compute!
“Getter for the total native scaling.
Scramble the stimulus.
Attention: If the surface size is not a multiple of the grain size, you may loose some pixels on the edge.
Parameters : | grain_size : int or (int, int)
|
---|---|
Returns : | time : int
|
Notes
Depending on the size of the stimulus, this method may take some time to compute!
Getter for surface_size.
Unload the stimulus from memory.
This will unload preloaded stimuli. In OpenGL mode, this method will remove the reference to the OpenGL texture and the surface (when ‘keep_surface’ is False). When OpenGL is switched off, the reference to the surface will be removed (when ‘keep_surface’ is False).
Parameters : | keep_surface : bool, optional
|
---|---|
Returns : | time : int
|
See also
clear_surface.
Notes
Depending on the size of the stimulus, this method may take some time to compute!
Getter for the polygon verticies.
Return polygon as list of XYPoints of the shape.
The representation does not take into account the position. Use xy_points_on_screen for position-depended representation.
In contrast to the vertex representation, the point representation takes into all the native transformations (rotation, scaling, flipping).
Returns : | val: list of XYPoints :
|
---|
Return polygon as list of XYPoints in Expyriment coordinates.
In contrast to the vertex representation, the point representation takes into all the native transformations (rotation, scaling, flipping).
Returns : | val: list of XYPoints :
|
---|