From 9587965c5dcedd958dc2aa3454b77ccf36db90c0 Mon Sep 17 00:00:00 2001 From: rdb Date: Tue, 2 Nov 2021 15:02:14 +0100 Subject: [PATCH] bullet: Add some API documentation strings for BulletDebugNode --- panda/src/bullet/bulletDebugNode.I | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/panda/src/bullet/bulletDebugNode.I b/panda/src/bullet/bulletDebugNode.I index eae681aba5..e29863669f 100644 --- a/panda/src/bullet/bulletDebugNode.I +++ b/panda/src/bullet/bulletDebugNode.I @@ -20,7 +20,7 @@ INLINE BulletDebugNode:: } /** - * + * If true, displays collision shapes in wireframe mode. */ INLINE void BulletDebugNode:: show_wireframe(bool show) { @@ -39,7 +39,8 @@ get_show_wireframe() const { } /** - * + * If true, display limits defined for constraints, e.g. a pivot axis or maximum + * amplitude. */ INLINE void BulletDebugNode:: show_constraints(bool show) { @@ -58,7 +59,7 @@ get_show_constraints() const { } /** - * + * If true, displays axis aligned bounding boxes for objects. */ INLINE void BulletDebugNode:: show_bounding_boxes(bool show) { @@ -77,7 +78,7 @@ get_show_bounding_boxes() const { } /** - * + * If true, displays normal vectors for triangle mesh and heightfield faces. */ INLINE void BulletDebugNode:: show_normals(bool show) { @@ -92,4 +93,4 @@ INLINE bool BulletDebugNode:: get_show_normals() const { return _drawer._normals; -} \ No newline at end of file +}