A Python package, with no dependencies, producing SVG images of Slide Rule scales
Project description
slideruleimages
Python package to produce Slide Rule SVG images
A typical example might be:
from slideruleimages import Rule
# xvalue is where the C scale index is placed over the D value
# right is True if the mid scale is moved to the right
# right is False if the mid scale is moved to the left
# hairline is where the hairline cursor is placed over the D value,
# or zero if no hairline is used
rl = Rule(xvalue = 2.0, right = True, hairline=6.0,
topruleheight = 0, # No top rule
midruleheight = 120, # middle slider 120px high
btmruleheight = 120) # bottom rule 120 px high
# Add a C scale
rl.addCscale(midrule=20) # indicates this scale is put on the middle rule
# 20 pixels down from the top of the middle rule
# Add a D scale
rl.addDscale(btmrule=0) # indicates this scale is put on the bottom rule
# 0 pixels down from the top of the bottom rule
filename = "twoxthree.svg"
rl.write(filename)
print(f'{filename} created')
This would produce:
This package is intended to produce images useful for documents or web sites which illustrate logarithms or Slide Rules. One such web site is available at:
https://bernie-skipole.github.io/sliderule/
The package has one class, Rule, which is illustrated above and has the methods:
write(filename) This saves the image file.
addDscale(btmrule=-1, midrule=-1, toprule=-1)
addCscale(btmrule=-1, midrule=-1, toprule=-1)
addCFscale(btmrule=-1, midrule=-1, toprule=-1)
addDFscale(btmrule=-1, midrule=-1, toprule=-1)
addLL3scale(btmrule=-1, midrule=-1, toprule=-1)
addLL2scale(btmrule=-1, midrule=-1, toprule=-1)
Only one of the arguments btmrule, midrule or toprule should be given a non -1 argument which indicates which rule the scale should appear on, and the integer number of pixels down from the top of that rule.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file slideruleimages-0.0.1.tar.gz.
File metadata
- Download URL: slideruleimages-0.0.1.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b342762cddffae2c7b8b53d6c9f98081cf899eafb603e09d320f9020f45e1b94
|
|
| MD5 |
209082390c939eff42f2cf28f0b84cd9
|
|
| BLAKE2b-256 |
7948683296a2fbf32ca75f2ce96482ed9ab222a52e8086844e263381670b007c
|
File details
Details for the file slideruleimages-0.0.1-py3-none-any.whl.
File metadata
- Download URL: slideruleimages-0.0.1-py3-none-any.whl
- Upload date:
- Size: 12.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
874cd69feec077753ce5ac275925e25044dfb849a40fd7c950154ef3f2ea5396
|
|
| MD5 |
907e8694cf32e79fcd789ef307f9dc05
|
|
| BLAKE2b-256 |
d601bbcff592b0346c52be1f48267c3c0c973ab6f648d7c73b04f5ad260e3683
|