https://github.com/jryzkns/jrylibrary
A hearty homemade Psychopy library
https://github.com/jryzkns/jrylibrary
psychology-experiments psychopy python27
Last synced: 7 months ago
JSON representation
A hearty homemade Psychopy library
- Host: GitHub
- URL: https://github.com/jryzkns/jrylibrary
- Owner: jryzkns
- Created: 2017-07-13T02:23:31.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-08-28T09:11:17.000Z (about 5 years ago)
- Last Synced: 2025-01-15T07:58:11.311Z (9 months ago)
- Topics: psychology-experiments, psychopy, python27
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JryLibrary
A hearty set of Psychopy helper functions (code is obsolete)A quick guide on hex values for colors:
hexvalues for colors are always a 6 digit number in base 16,it takes the form of "#XXXXXX".
Each digit can be any of: [1,2,3,4,5,6,7,8,9,A,B,C,D,E,F].
When reading from the left to the right:
the "#" sign is denoting a hexvalue
the first two digits denote how much red there is
the second two digits denote how much green there is
the last two digits denote how much blue there isA helpful way to remember this is to look at a QWERTY keyboard:
The keys "R", "G", and "B" form an arc together, just like how to digits of rgb line up.
Additionally, between R(ed) and G(reen), there is the Y(ellow) key, so Red added to Green is Yellow.
Similarly, G(reen) added to B(lue) is the C(yan) key.