From eaac3b9a9f24f1c47b263d660eab29bf690ceb99 Mon Sep 17 00:00:00 2001 From: Johnathon Selstad Date: Fri, 1 Dec 2023 17:34:16 -0800 Subject: [PATCH] Trigger Local GA Actions --- cpp/pybind/visualization/rendering/rendering.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/pybind/visualization/rendering/rendering.cpp b/cpp/pybind/visualization/rendering/rendering.cpp index 0d0e7cfc5af..51619f5cc68 100644 --- a/cpp/pybind/visualization/rendering/rendering.cpp +++ b/cpp/pybind/visualization/rendering/rendering.cpp @@ -175,7 +175,7 @@ void pybind_rendering_classes(py::module &m) { "setup_camera(vertical_field_of_view, center, eye, up, " "near_clip, far_clip): " "sets camera view using bounding box of current geometry " - "if the near_clip and far_clip parameters are unset", + "if the near_clip and far_clip parameters are not set", py::arg("verticalFoV"), py::arg("center"), py::arg("eye"), py::arg("up"), py::arg("nearClip") = -1.0f, py::arg("farClip") = -1.0f)