Home
Fractals
Tutorials
Books
Archive
My blog
My LinkedIn Profile

BOOKS i'm reading

Napoleon Hill Keys to Success: The 17 Principles of Personal Achievement, Napoleon Hill, ISBN: 978-0452272811
The 4-Hour Workweek: Escape 9-5, Live Anywhere, and Join the New Rich (Expanded and Updated), Timothy Ferriss, ISBN: 978-0307465351
The Fountainhead, Ayn Rand, ISBN: 0452273331

/*
 * Module ID: voronoi.h
 * Titre    : Construction d'un diagrame de Voronoi.
 * Utilite  : Utilise l'algorithme de Steven Fortune des laboratoires
 *            Bell AT&T comme decrit dans 'Computational Geometry in C' de
 *            J. O'Rourke. (P. 179)
 *
 * Limite   : Cet algorithme n'est pas le plus appropriƩ lorsque l'on
 *            desire ajouter ou supprimer des sites de l'ensemble de sites
 *            de depart.
 *
 * Auteur   : Olivier Langlois (olivier@olivierlanglois.net)
 * Date     : 07 Mars 1998
 */

#ifndef   _VORONOI_H_
#define   _VORONOI_H_

#include "collect/idlist.h"
#include "geo/dcel.h"

/******************************************************************************
 *
 * Nom       : Voronoi
 *
 * Utilite   : Contruire un diagrame de Voronoi.
 *
 * Parametres:
 *     sl      (IDList &) Liste de sites.
 *
 * Valeur de retour: (DCEL *) Liste des aretes du diagrame.
 *
 ****************************************************************************/
extern DCEL *Voronoi( IDList &sl );

#endif /* _VORONOI_H_ */










The rest of the source code for the Voronoi diagram building function is available from my source code archive page. You can also see an actual output of the function.

Home :: Fractals :: Tutorials :: Books :: Archive :: My blog :: My LinkedIn Profile :: Contact