Compare commits

..

2 commits

Author SHA1 Message Date
jan
93e4075d89 [Placement] fix writing placement 2026-02-17 00:44:56 -08:00
jan
cceabe46ee README update: drop github mirror 2026-02-16 21:50:29 -08:00
2 changed files with 2 additions and 9 deletions

View file

@ -4,7 +4,6 @@
**Homepage:** https://mpxd.net/code/jan/fatamorgana
* [PyPI](https://pypi.org/project/fatamorgana)
* [Github mirror](https://github.com/anewusername/fatamorgana)
**Capabilities:**
* This package is a work-in-progress and is largely untested -- it works for
@ -28,12 +27,7 @@
Install with pip from PyPi (preferred):
```bash
pip3 install fatamorgana
```
Install directly from git repository:
```bash
pip3 install git+https://mpxd.net/code/jan/fatamorgana.git@release
pip install fatamorgana
```
## Documentation
@ -44,7 +38,6 @@ To read the inline help,
import fatamorgana
help(fatamorgana.OasisLayout)
```
The documentation is currently very sparse and I expect to improve it whenever possible!
## Examples

View file

@ -1434,7 +1434,7 @@ class Placement(Record):
size += self.name.write(stream) # type: ignore
if mm:
size += write_real(stream, self.magnification) # type: ignore
if aa:
if aq:
size += write_real(stream, self.angle) # type: ignore
if xx:
size += write_sint(stream, self.x) # type: ignore