Quickstart

This Jupyter notebook demonstrates how a hyperbolic tiling can be constructed and plotted using only very few lines of code.

Import tiling object from hypertiling library

[10]:
from hypertiling import HyperbolicTiling

Set parameters and generate the tiling

[11]:
p = 7
q = 3
nlayers = 5

T = HyperbolicTiling(p,q,nlayers)

The size of the tiling can be queried like this

[12]:
print("Number of cells:", len(T))
Number of cells: 232

Import and use available script for a quick plot

[13]:
from hypertiling.graphics.plot import plot_tiling

import matplotlib.cm as cmap
import numpy as np
[14]:
colors = np.random.rand(len(T))

plot_tiling(T, colors, cmap=cmap.RdBu, edgecolor="k", linewidth=0.2);
../_images/examples_quickstart_10_0.png

By default, tilings are centered around a “cell”. They can also be centered around a vertex at the origin, using the following syntax

[15]:
p = 4
q = 5
nlayers = 4

T = HyperbolicTiling(p, q, nlayers, center="vertex")

This example also demonstrates how keyword arguments like “clim” can easily be passed through the plot function

[16]:
plot_tiling(T, np.random.rand(len(T)), cmap=cmap.OrRd, edgecolor="w", lw=1, clim=[-1,2]);
../_images/examples_quickstart_14_0.png

In the next example we demonstrate how one can easily iterate over the cells of a tiling, e.g. in order to access their attributes

[8]:
T = HyperbolicTiling(7, 3, 7, center="cell")

Paint cells by number of layer in which they reside

[18]:
colors = []
for i in range(len(T)):
    colors.append(T.get_layer(i))

plot_tiling(T, colors, cmap=cmap.GnBu, edgecolor="k", lw=0.2);
../_images/examples_quickstart_18_0.png

Finally, something which just looks nice :)

[19]:
T = HyperbolicTiling(3, 12, 4, center="vertex")
[20]:
plot_tiling(T, np.random.rand(len(T)), cmap=cmap.OrRd, edgecolor="w", lw=0.4, clim=[-1,2]);
../_images/examples_quickstart_21_0.png

The colors are a bit bright. Let’s make them more transparent.

[21]:
plot_tiling(T, np.random.rand(len(T)), cmap=cmap.OrRd, edgecolor="w", lw=0.4, clim=[-1,2], alpha=0.5);
../_images/examples_quickstart_23_0.png