Todd Parsons

Results 67 issues of Todd Parsons

Still trying to work out exactly what causes this, but if you create a rectangle with 8 vertices rather than 4 (so there's 1 in the middle of each side)...

🐞 bug
👀 visual

I noticed some discrepancies between the random functions in utils and their numpy counterparts. The functions themselves seem simple enough that my rudimentary JS should be adequate so I had...

Adds Counterbalancer object (matching https://github.com/psychopy/psychopy/pull/5967) which makes calls to the Shelf to handle counterbalancing. Bits which were beyond my JS skills I've added a `ReferenceError` so it's clear what needs...

Creating as a draft until the corresponding Python commit is pulled in (need to discuss risk of breaking existing experiments with this)

See #5790 for more details

This has the following advantages: - Changing the behaviour of the Dlg class is now much easier for things like parsing syntax, where the backend doesn't matter, as you only...

Following discussion in #2625, I've made a plugin to add wxPython support and linked to it in the docs.

### Describe your feature request I love that MarkText allows preferences toggles for pandoc syntax, it would be great to have similar toggles to enable more syntax from the [full...

Current if you do: ``` a.pop() ``` you get ``` a.splice((- 1), 1) ``` JS doesn't have negative indexing, so can't splice the -1st value. Instead, we should use `.length...