├── .github └── workflows │ └── validate-json.yml ├── .gitignore ├── 404.json ├── LICENSE ├── README.md ├── applications ├── menuitem.json └── window.json ├── graphics ├── circ.json ├── line.json ├── rect.json ├── spr.json └── sspr.json ├── guides ├── Setting_a_font.json └── trigonometry.json ├── help_topics.json ├── input └── mouse.json ├── landing.json ├── math ├── atan2.json ├── cos.json ├── max.json ├── mid.json ├── min.json ├── rnd.json ├── sin.json └── sqrt.json ├── topics ├── applications.json ├── graphics.json ├── guides.json ├── input.json ├── math.json └── workspaces.json ├── wiki_development └── testing.json └── workspaces ├── audio.json └── graphics.json /.github/workflows/validate-json.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/.github/workflows/validate-json.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/.info.pod 2 | -------------------------------------------------------------------------------- /404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/404.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/README.md -------------------------------------------------------------------------------- /applications/menuitem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/applications/menuitem.json -------------------------------------------------------------------------------- /applications/window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/applications/window.json -------------------------------------------------------------------------------- /graphics/circ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/graphics/circ.json -------------------------------------------------------------------------------- /graphics/line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/graphics/line.json -------------------------------------------------------------------------------- /graphics/rect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/graphics/rect.json -------------------------------------------------------------------------------- /graphics/spr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/graphics/spr.json -------------------------------------------------------------------------------- /graphics/sspr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/graphics/sspr.json -------------------------------------------------------------------------------- /guides/Setting_a_font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/guides/Setting_a_font.json -------------------------------------------------------------------------------- /guides/trigonometry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/guides/trigonometry.json -------------------------------------------------------------------------------- /help_topics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/help_topics.json -------------------------------------------------------------------------------- /input/mouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/input/mouse.json -------------------------------------------------------------------------------- /landing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/landing.json -------------------------------------------------------------------------------- /math/atan2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/math/atan2.json -------------------------------------------------------------------------------- /math/cos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/math/cos.json -------------------------------------------------------------------------------- /math/max.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/math/max.json -------------------------------------------------------------------------------- /math/mid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/math/mid.json -------------------------------------------------------------------------------- /math/min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/math/min.json -------------------------------------------------------------------------------- /math/rnd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/math/rnd.json -------------------------------------------------------------------------------- /math/sin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/math/sin.json -------------------------------------------------------------------------------- /math/sqrt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/math/sqrt.json -------------------------------------------------------------------------------- /topics/applications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/topics/applications.json -------------------------------------------------------------------------------- /topics/graphics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/topics/graphics.json -------------------------------------------------------------------------------- /topics/guides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/topics/guides.json -------------------------------------------------------------------------------- /topics/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/topics/input.json -------------------------------------------------------------------------------- /topics/math.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/topics/math.json -------------------------------------------------------------------------------- /topics/workspaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/topics/workspaces.json -------------------------------------------------------------------------------- /wiki_development/testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/wiki_development/testing.json -------------------------------------------------------------------------------- /workspaces/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/workspaces/audio.json -------------------------------------------------------------------------------- /workspaces/graphics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picotron-Software-Developers/Picotron-Wiki/HEAD/workspaces/graphics.json --------------------------------------------------------------------------------