Metadata-Version: 2.1
Name: hexalattice
Version: 1.1.0
Summary: Compute and plot hexagonal grids
Home-page: https://github.com/alexkaz2/hexalattice/wiki
Author: Alex Kazakov
Author-email: alex.kazakov@mail.huji.ac.il
License: MIT
Description: # hexalattice
        
        Generate and plot hexagonal lattices in 2D, with fine control over spacing between hexagons, arbitrary rotation of the grid around central tile, etc.
        The module computes and returns the center point for each fo the tiles in the lattice. 
        
        <p align="center">
          <img width="450" src="https://github.com/alexkaz2/hexalattice/blob/master/example_hexagonal_lattices/lattice6.png">
        </p>
        
        
        
        ## Installation
        
        [![PyPI version](https://badge.fury.io/py/hexalattice.svg)](https://badge.fury.io/py/hexalattice)
        ![python version](https://upload.wikimedia.org/wikipedia/commons/f/fc/Blue_Python_3.7_Shield_Badge.svg)
        ![conda](https://anaconda.org/conda-forge/hexalattice/badges/installer/conda.svg)
        ![downloads_anaconda](https://anaconda.org/conda-forge/hexalattice/badges/downloads.svg)
        ![license](https://anaconda.org/conda-forge/hexalattice/badges/license.svg)
        
        ```sh
        # Using pip
        pip install hexalattice
        ```
        ```sh
        # Using conda
        conda install -c conda-forge hexalattice
        ```
        
        
        
        ## Usage example
        
        Create and plot 5x5 lattice of hexagons (as in first image):
        ```sh
        from hexalattice.hexalattice import *
        hex_centers, _ = create_hex_grid(nx=5,
                                         ny=5,
                                         do_plot=True)
                                         
        plt.show()    # import matplotlib.pyplot as plt
        ```
        
        Get central points of the hexagons:
        ```sh
        tile_centers_x = hex_centers[:, 0]
        tile_centers_y = hex_centers[:, 1]
        ```
        
        Plot one grid over the other, second with spacing around the hexagons:
        ```sh
        _, h_ax = create_hex_grid(nx=5, 
                                  ny=7,
                                  do_plot=True,
                                  edge_color=(0.85, 0.85, 0.85))
                                            
        create_hex_grid(nx=5,
                        ny=7,
                        do_plot=True,
                        edge_color=(0.25,0.25, 0.25),
                        h_ax=h_ax,
                        plotting_gap=0.3)
        plt.show()
        ```
        
        <p align="center">
          <img width="600" src="https://github.com/alexkaz2/hexalattice/blob/master/example_hexagonal_lattices/lattice5.png">
        </p>
        
        Create MoirÃ© pattern from two circularly cropped hexagrids:
        ```sh
        hex_grid1, h_ax = create_hex_grid(nx=50,
                                          ny=50,
                                          rotate_deg=0,
                                          min_diam=1,
                                          crop_circ=20,
                                          do_plot=True)
            create_hex_grid(nx=50,
                            ny=50,
                            min_diam=1,
                            rotate_deg=5,
                            crop_circ=20,
                            do_plot=True,
                            h_ax=h_ax)
        ```
        
        <p align="center">
          <img width="600" src="https://github.com/alexkaz2/hexalattice/blob/master/example_hexagonal_lattices/lattice2.png">
        </p>
        
        _For API and additional examples see the wiki [hexalattice API](https://github.com/alexkaz2/hexalattice/wiki)._
        
        <p align="center">
          <img width="900" src="https://github.com/alexkaz2/hexalattice/blob/master/example_hexagonal_lattices/Figure_1.png" hspace="10"/>
        </p> 
        <p align="center">
          <img width="450" src="https://github.com/alexkaz2/hexalattice/blob/master/example_hexagonal_lattices/lattice1.png" hspace="10"/>
          <img width="450" src="https://github.com/alexkaz2/hexalattice/blob/master/example_hexagonal_lattices/lattice3.png" hspace="10"/>
        </p>
        
        ## Release History
        
        * v1.0 - First version
        * v1.1 - Added the option to assign different colors to hexagons
        
        ## About & License
        
        Alex Kazakov â€“ [@bio_vs_silico](https://twitter.com/bio_vs_silico) â€“ alex.kazakov@mail.huji.ac.il
        
        Distributed under the MIT license. See ``LICENSE`` for more information.
        
        [https://github.com/alexkaz2/hexalattice](https://github.com/alexkaz2/)
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.5
Description-Content-Type: text/markdown
