Hi,
Here is the experiment link: rspb.2011.1131 [PsychoPy]
I am trying to establish an online experiment on Pavlovia of the time perception and discrimination.
I am trying to set a visual stimuli composed of three concentric rings, just like this:
But I don’t to how to modify my code to achieve this visual stimuli, the only thing I can do is drawing one circle and setting the edge wider to realize one concentric ring, like this:
Here is my code:
// Initialize components for Routine "comaprison_s"
comaprison_sClock = new util.Clock();
image_2 = new visual.Polygon ({
win: psychoJS.window, name: 'image_2',
edges: 50, size:[0.015, 0.015],
ori: 0, pos: [0, 0],
lineWidth: 5, lineColor: new util.Color([1, 1, 1]),
fillColor: new util.Color([0, 0, 0]),
opacity: 1, depth: 0, interpolate: true,
});
I am wondering how should I modify my code so that I can set the three concentric rings visual stimuli mentioned above?
Thanks!