fix indentation,style
[demo] / src / meshgen.h
index 81880f6..1db98f9 100644 (file)
@@ -8,6 +8,6 @@ class Mesh;
 /* generates geodesic sphere: if hemi is true we only gen the hemisphere */
 void gen_geosphere(Mesh *mesh, float rad, int subdiv, bool hemi = false);
 void gen_heightfield(Mesh *mesh, float xsz, float ysz, float height, int usub,
-               int vsub, float (*calc_height)(float u, float v, void *ptr), void *ptr);
+                     int vsub, float (*calc_height)(float u, float v, void *ptr), void *ptr);
 
 #endif // MESHGEN_H_