{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Computing a Convex Hull" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import skgeom as sg\n", "from random import random as r" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "points = []\n", "for i in range(25):\n", " points.append(sg.Point2(r(), r()))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def pairwise(iterable):\n", " \"s -> (s0,s1), (s1,s2), (s2, s3), ...\"\n", " a, b = itertools.tee(iterable)\n", " next(b, None)\n", " return zip(a, b)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from skgeom.draw import draw\n", "import itertools\n", "\n", "draw(points)\n", "chull_points = sg.convex_hull.graham_andrew(points)\n", "chull_poly = sg.Polygon(chull_points)\n", "\n", "draw(chull_poly)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.3" } }, "nbformat": 4, "nbformat_minor": 2 }