From b792bf20c0d0b69178a1d458da817681015ea899 Mon Sep 17 00:00:00 2001 From: mwfarb Date: Mon, 6 May 2024 11:16:24 -0400 Subject: [PATCH] docs: update schema docstrings to latest version --- arena/objects/pcd_model.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arena/objects/pcd_model.py b/arena/objects/pcd_model.py index a3b4552d..b7598cb7 100644 --- a/arena/objects/pcd_model.py +++ b/arena/objects/pcd_model.py @@ -4,7 +4,8 @@ class PcdModel(Object): """ PcdModel object class to manage its properties in the ARENA: Load a PCD model. Format: Point Clouds. See guidance to store paths under ARENA File Store, CDN, or DropBox. - :param str pointColor: Color of the points. Defaults to '#7f7f7f' (optional) + :param float opacity: Opacity of all points. Defaults to '1' (optional) + :param str pointColor: Color of the points. (optional) :param float pointSize: Size of the points. Defaults to '0.01' (optional) :param str url: Use File Store paths under 'store/users/username', see CDN and other storage options in the description above. (optional) """