backported minor changes to Mesh::dump_obj from meshgen project
[laserbrain_demo] / src / mesh.h
index 90cd1e7..8291aa7 100644 (file)
@@ -221,6 +221,7 @@ public:
         * @{ */
        float get_bsphere(Vec3 *center, float *rad) const;
        const Sphere &get_bsphere() const;
+       /// @}
 
        static void set_intersect_mode(unsigned int mode);
        static unsigned int get_intersect_mode();
@@ -242,7 +243,7 @@ public:
        bool dump(const char *fname) const;
        bool dump(FILE *fp) const;
        bool dump_obj(const char *fname) const;
-       bool dump_obj(FILE *fp) const;
+       bool dump_obj(FILE *fp, int voffs = 0) const;
 };
 
 #endif // MESH_H_