Module casioplot
from Casio calculator for Computers.
This can help to develop python programs in your computer and run it before you put it in your calculator. Due to it's customization ability, this package can also be used as simple way to draw at a pixel level.
pip install casioplot
This module use python 3.11.
Need the module Pillow
to work.
Install Pillow:
pip install pillow
from casioplot import *
print(get_pixel(10, 10))
red = (255, 0, 0)
set_pixel(10, 10, red)
print(get_pixel(10, 10))
show_screen() # Don't forget to show the screen to see the result.
(255, 255, 255)
(255, 0, 0)
For more examples and usage, please refer to the Docs. There is also a demonstration of the package in the folder demo.
Nothing needed.
See Github release page.
Uniwix - [email protected]
MiguelTorrinhaPereira - [email protected]
Distributed under the MIT license. See LICENSE for more information.
- Fork it (https://github.com/uniwix/casioplot/fork)
- Create your feature branch (
git checkout -b feature/fooBar
) - Commit your changes (
git commit -am 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request
v 3.4.1 - Uniwix - MiguelTorrinhaPereira