From 2b9cc61d0428bd4ce79eabf0a189ec10596662e7 Mon Sep 17 00:00:00 2001 From: rdb Date: Thu, 2 Jan 2020 00:36:29 +0100 Subject: [PATCH] grutil: fix wrong method name in LineSegs docstrings --- panda/src/grutil/lineSegs.I | 2 +- panda/src/grutil/lineSegs.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/panda/src/grutil/lineSegs.I b/panda/src/grutil/lineSegs.I index 5236f13b74..5a7b533e1d 100644 --- a/panda/src/grutil/lineSegs.I +++ b/panda/src/grutil/lineSegs.I @@ -99,7 +99,7 @@ draw_to(PN_stdfloat x, PN_stdfloat y, PN_stdfloat z) { * Creates a new GeomNode that will render the series of line segments and * points described via calls to move_to() and draw_to(). The lines and * points are created with the color and thickness established by calls to - * set_color() and set_thick(). + * set_color() and set_thickness(). * * If dynamic is true, the line segments will be created with the dynamic Geom * setting, optimizing them for runtime vertex animation. diff --git a/panda/src/grutil/lineSegs.cxx b/panda/src/grutil/lineSegs.cxx index 534c1f5700..bdf7912d7e 100644 --- a/panda/src/grutil/lineSegs.cxx +++ b/panda/src/grutil/lineSegs.cxx @@ -164,7 +164,7 @@ get_current_position() { * Appends to an existing GeomNode a new Geom that will render the series of * line segments and points described via calls to move_to() and draw_to(). * The lines and points are created with the color and thickness established - * by calls to set_color() and set_thick(). + * by calls to set_color() and set_thickness(). * * If dynamic is true, the line segments will be created with the dynamic Geom * setting, optimizing them for runtime vertex animation.