tavli

annotate src/meshgen.h @ 3:94aff2ff1934

too much?
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 22 Jun 2015 21:46:57 +0300
parents
children a8e26f163f99
rev   line source
nuclear@1 1 #ifndef MESHGEN_H_
nuclear@1 2 #define MESHGEN_H_
nuclear@1 3
nuclear@1 4 class Mesh;
nuclear@1 5
nuclear@1 6 void gen_sphere(Mesh *mesh, float rad, int usub, int vsub, float urange = 1.0, float vrange = 1.0);
nuclear@1 7 void gen_cylinder(Mesh *mesh, float rad, float height, int usub, int vsub, int capsub = 0, float urange = 1.0, float vrange = 1.0);
nuclear@1 8 void gen_cone(Mesh *mesh, float rad, float height, int usub, int vsub, int capsub = 0, float urange = 1.0, float vrange = 1.0);
nuclear@1 9 void gen_plane(Mesh *mesh, float width, float height, int usub = 1, int vsub = 1);
nuclear@1 10 void gen_heightmap(Mesh *mesh, float width, float height, int usub, int vsub, float (*hf)(float, float, void*), void *hfdata = 0);
nuclear@1 11 void gen_box(Mesh *mesh, float xsz, float ysz, float zsz);
nuclear@1 12
nuclear@1 13 #endif // MESHGEN_H_