From 0c03dfca05f795ddf0964b4e0034ec980d054fd0 Mon Sep 17 00:00:00 2001 From: rdb Date: Wed, 19 Oct 2022 16:04:15 +0200 Subject: [PATCH] egg: Some comment reformatting [skip ci] --- panda/src/egg/eggPrimitive.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/panda/src/egg/eggPrimitive.h b/panda/src/egg/eggPrimitive.h index 4b8a035952..ebf3bab2c5 100644 --- a/panda/src/egg/eggPrimitive.h +++ b/panda/src/egg/eggPrimitive.h @@ -134,10 +134,9 @@ PUBLISHED: virtual bool joint_has_primitives() const; virtual bool has_normals() const; - // The EggPrimitive itself appears to be an STL container of pointers to // EggVertex objects. The set of vertices is read-only, however, except - // through the limited add_vertexremove_vertex or inserterase interface. + // through the limited add_vertex/remove_vertex or insert/erase interface. // The following implements this. public: #if defined(WIN32_VC) || defined(WIN64_VC) @@ -203,8 +202,8 @@ protected: Vertices _vertices; // Don't try to use these private functions. User code should add and - // remove vertices via add_vertex()remove_vertex(), or via the STL-like - // push_back()pop_back() or insert()erase(), above. + // remove vertices via add_vertex() / remove_vertex(), or via the STL-like + // push_back() / pop_back() or insert() / erase(), above. virtual void prepare_add_vertex(EggVertex *vertex, int i, int n); virtual void prepare_remove_vertex(EggVertex *vertex, int i, int n);