Metadata-Version: 2.4
Name: axonometry
Version: 0.1.4b9
Summary: Scripting library for generating axonometric drawings.
Author: Julien Rippinger
Project-URL: documentation, https://axonometry.readthedocs.io/en/latest/
Project-URL: repository, https://codeberg.org/mononym/axonometry/
Keywords: architecture,research,drawing,axonometry,projection
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Artistic Software
Classifier: Topic :: Education
Classifier: Topic :: Multimedia :: Graphics :: Editors :: Vector-Based
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: <3.13,>=3.10
Description-Content-Type: text/x-rst
Requires-Dist: compas~=2.10
Requires-Dist: vpype[all]~=1.14
Requires-Dist: setuptools
Requires-Dist: CairoSVG

.. SPDX-FileCopyrightText: 2022-2025 Julien Rippinger
..
.. SPDX-License-Identifier: CC-BY-4.0

.. start-badges

|python-versions| |pypi| |license| |reuse-status| |rtd-status| |pipeline-status| |issues| |chat-room|

.. |pypi| image:: https://img.shields.io/pypi/v/axonometry?label=PyPI&logo=pypi&color=blue
   :target: https://pypi.org/project/axonometry/

.. |python-versions| image:: https://img.shields.io/pypi/pyversions/axonometry.svg
   :target: https://pypi.org/project/axonometry/

.. |license| image:: https://img.shields.io/pypi/l/axonometry?color=blue
   :target: https://axonometry.readthedocs.io/en/latest/license.html

.. |issues| image:: https://img.shields.io/gitea/issues/all/mononym/axonometry?gitea_url=https%3A%2F%2Fcodeberg.org
   :target: https://codeberg.org/mononym/axonometry/issues

.. |reuse-status| image:: https://api.reuse.software/badge/codeberg.org/mononym/axonometry
   :target: https://api.reuse.software/info/codeberg.org/mononym/axonometry

.. |rtd-status| image:: https://img.shields.io/readthedocs/axonometry?label=Read%20the%20Docs&logo=read-the-docs
   :target: https://axonometry.readthedocs.io/en/latest/

.. |pipeline-status| image:: https://ci.codeberg.org/api/badges/14144/status.svg?branch=beta
   :target: https://ci.codeberg.org/repos/14144/branches/beta

.. |chat-room| image:: https://img.shields.io/badge/matrix-%23axonometry-black
   :target: https://matrix.to/#/#axonometry:fsfe.org

.. end-badges

Contents
^^^^^^^^

- `What is axonometry? <#what-is-axonometry>`__
- `How does it work? <#how-does-it-work>`__
- `Examples <#examples>`__
- `Installation <#installation>`__
- `Contributing <#contributing>`__
- `Acknowledgement <#acknowledgement>`__
- `License <#license>`__

.. start-pitch

What is axonometry?
-------------------

*Computer graphics meets architecture representation meets generative art.*

*axonometry* is the tip of the iceberg of a PhD project at the `AlICe laboratory <https://alicelab.be>`__. It is the result of a practical experimentation with questions related to the field of architectural representation, the role of computer graphics and drawing practices.

- *axonometry* is a proof-of-concept about a certain way of constructing 3D representations by projection.
- *axonometry* is a scripting library for generating axonometric drawings. It implements axonometric projection operations commonly used in the context of architectural representation. *axonometry* allows the exploration of three dimensional representation through the definition of projection operations. Think of it as a tool for generative drawing, oriented towards architectural representation.

How does it work?
-----------------

*axonometry* is basically a wrapper for `compas <https://compas.dev>`__ geometry objects and produces SVG vector files with the help of `vpype <https://vpype.readthedocs.io>`__.

.. end-pitch

Examples
--------

.. code:: python

   from axonometry import Axonometry
   Axonometry(15,45).save_svg("new_drawing")

.. image:: ./docs/source/_images/examples/new_drawing.png
   :align: center

.. code:: python

  from axonometry import Axonometry, Line, Point
  my_axo = Axonometry.random_angles()
  my_axo.draw_line(Line(Point.random_point(), Point.random_point()))
  my_axo.draw_line(Line(Point.random_point(), Point.random_point()))
  my_axo.draw_line(Line(Point.random_point(), Point.random_point()))
  my_axo.show_paths()

.. image:: ./docs/source/_images/usage/draw_axo_lines.png
   :align: center

.. code:: python

  from axonometry import Axonometry, Line, Point
  my_axo = Axonometry.random_angles()
  l_xy = my_axo.xy.draw_line(Line(Point.random_point("xy"), Point.random_point("xy")))
  l_xy.project_into_surface(distance=50/2, length=50)
  l_yz = my_axo.yz.draw_line(Line(Point.random_point("yz"), Point.random_point("yz")))
  l_yz.project_into_surface(distance=50/2, length=50)
  l_zx = my_axo.zx.draw_line(Line(Point.random_point("zx"), Point.random_point("zx")))
  l_zx.project_into_surface(distance=50/2, length=50)
  my_axo.show_paths()

.. image:: ./docs/source/_images/usage/proj_line_to_surface.png
   :align: center

.. code:: python

  from axonometry import Axonometry
  my_axo = Axonometry.random_angles()
  my_axo.import_obj_file("./examples/monkey.obj")
  my_axo.show_paths()

.. image:: ./docs/source/_images/examples/monkey_system.png
   :align: center

Installation
------------

Please refer to the `install section <https://axonometry.readthedocs.io/en/latest/install.html>`_ for detailed installation instructions.

TL;DR:

- Python 3.12 is recommended, but *axonometry* is also compatible with Python 3.10 and 3.11.
- `uv <https://docs.astral.sh/uv/#installation>`_ is the recommended package manager.

.. code:: bash

   # Install uv on Linux and macOS
   curl -LsSf https://astral.sh/uv/install.sh | sh
   # Install uv on Windows
   powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
   # Get Python 3.12
   uv python install 3.12
   # Make virtual environment
   uv venv
   # Install axonometry
   uv pip install axonometry

Contributing
------------

All type of feedback is welcome. Contributions can take any form and do not necessarily require software development skills! Check the `Contributing section <https://axonometry.readthedocs.io/en/latest/contributing.html>`__ for more information.

Acknowledgement
---------------

Many thanks to the developers of *compas* and *vpype*. Not only did their libraries make this project possible, but inspecting their elegant codebase was an invaluable resource for deepening my Pyhton knowledge.

License
-------

This project is licensed under the GPLv3 License. Check the `Liceneses section <https://axonometry.readthedocs.io/en/latest/license.html>`__ for more information.
