This module allows to use casioplot module on a computer.
Project description
Casioplot for computer
Module casioplot from Casio calculator for Computer.
This can help to develop python programs in your computer and run it before put it in your calculator.
Requirements
This module use python 3.10.0.
Need the module Pillow to work.
Install Pillow:
$ pip install pillow
Settings
See settings options for more information.
Exemples
Draw a pixel
from casioplot import *
red = (255, 0, 0)
set_pixel(10, 10, red)
show_screen() # Don't forget to show the screen to see the result.
Result:
Draw a rectangle
from casioplot import *
def rectangle(start_x, start_y, end_x, end_y, color):
x = abs(end_x - start_x)
y = abs(end_y - start_y)
for i in range(x + 1):
for j in range(y + 1):
set_pixel(i + start_x, j + start_y, color)
red = (255, 0, 0)
rectangle(10, 10, 200, 100, red)
show_screen() # Don't forget to show the screen to see the result.
Result:
Get a pixel value
from casioplot import *
def rectangle(start_x, start_y, end_x, end_y, color):
x = abs(end_x - start_x)
y = abs(end_y - start_y)
for i in range(x + 1):
for j in range(y + 1):
set_pixel(i + start_x, j + start_y, color)
red = (255, 0, 0)
rectangle(10, 10, 200, 100, red)
match get_pixel(20, 20):
case r, g, b:
print('Red: ', r)
print('Green:', g)
print('Blue: ', b)
case None:
print('Out of the screen.')
Result:
Red: 255
Green: 0
Blue: 0
Note that you don't need to show the screen to get the color of a pixel.
Compatibility Notes
Some behaviors aren't respected:
- The output isn't show in the screen but saved on a picture.
- The function draw_string ignore the size parameter and doesn't use the same font as casio.
- Only one calculator implemented: casio graph 90+e
v 1.0.0 - Uniwix
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
casioplot-1.0.6.tar.gz
(4.7 kB
view details)
Built Distribution
File details
Details for the file casioplot-1.0.6.tar.gz
.
File metadata
- Download URL: casioplot-1.0.6.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3b05d8a187d5cf443f787adcdd8eae5123553743192020883cf480be64d6a3a |
|
MD5 | 267a5f7e9beda09e58436b6213c31da7 |
|
BLAKE2b-256 | d6388fbaf41f983096db7159bd384f966b0937abb2040ed4ea52d942cb547f6b |
File details
Details for the file casioplot-1.0.6-py3-none-any.whl
.
File metadata
- Download URL: casioplot-1.0.6-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20ff4956564c09bc3f479d79388332185c5a0fc14efc62e2969177c65facc477 |
|
MD5 | 84e77327605f3057b4700089a0cbfc11 |
|
BLAKE2b-256 | c7976605b5635f9e57e904f20f493564fb4d766ed088cb74c0369bf5ab577fe9 |