~ubuntu-branches/ubuntu/precise/png23d/precise

« back to all changes in this revision

Viewing changes to mesh_gen.h

  • Committer: Package Import Robot
  • Author(s): Vincent Sanders
  • Date: 2011-11-07 22:58:31 UTC
  • Revision ID: package-import@ubuntu.com-20111107225831-bn96gwr9msstzffv
Tags: upstream-1.10
ImportĀ upstreamĀ versionĀ 1.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2011 Vincent Sanders <vince@kyllikki.org>
 
3
 *
 
4
 * Licenced under the MIT License,
 
5
 *                http://www.opensource.org/licenses/mit-license.php
 
6
 *
 
7
 * This file is part of png23d. 
 
8
 * 
 
9
 * mesh generation routines header.
 
10
 */
 
11
 
 
12
#ifndef PNG23D_MESH_GEN_H
 
13
#define PNG23D_MESH_GEN_H 1
 
14
 
 
15
/** Convert raster image into triangle mesh
 
16
 *
 
17
 */
 
18
bool mesh_from_bitmap(struct mesh *mesh, bitmap *bm, options *options);
 
19
 
 
20
#endif