Metadata-Version: 2.4
Name: pancad
Version: 0.0.2.post0
Summary: A CAD (Computer-Aided Design) file translator
Project-URL: Homepage, https://github.com/spky/pancad
Project-URL: Issues, https://github.com/spky/pancad/issues
Author: spky
Maintainer: spky
License-Expression: CC0-1.0
License-File: LICENSE
Requires-Dist: numpy-quaternion==2024.0.10
Requires-Dist: numpy==2.2.1
Requires-Dist: scipy==1.16.1
Description-Content-Type: text/markdown

# pancad

## Overview

pancad is a CAD (Computer-Aided Design) file translator. It is intended to 
enable the sharing of geometry and design information **independent of 
software application**. PanCAD's name is inspired by [Pandoc][1], which is an 
unrelated but similar software application that can convert documents 
from one file type to another.

## How to get it

The source code is hosted on GitHub at: https://github.com/spky/pancad

Binary installers for the latest release version are available at the
[Python Package Index (PyPI)][2]

```sh
# PyPI
pip install pancad
```

## License

2025. This work has been marked as dedicated to the public domain.
See [CC0-1.0][3]

## Dependencies

- [NumPy][4] - Used for matrix multiplication and mathematical functions for 
those arrays.
- [quaternion][5] - Used for pesky quaternion defined coordinate systems.
- [SciPy][6] - Used by quaternion.

<!-- References -->

[1]: https://pandoc.org/
[2]: https://pypi.org/
[3]: https://creativecommons.org/publicdomain/zero/1.0/
[4]: https://numpy.org/
[5]: https://quaternion.readthedocs.io/en/latest/
[6]: https://scipy.org/