From 078881f78efdc06809f81dce8b4b1145a98aee91 Mon Sep 17 00:00:00 2001 From: Bishwash Khanal <43448240+bkhanal-11@users.noreply.github.com> Date: Fri, 23 Jun 2023 17:42:40 +0545 Subject: [PATCH] Updated typo in pointcloud.cpp for tensor The documentation through sphinx had incorrect format for example code of `extrude_linear` function. --- cpp/pybind/t/geometry/pointcloud.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp/pybind/t/geometry/pointcloud.cpp b/cpp/pybind/t/geometry/pointcloud.cpp index cc7f98eca59..6ca0d68f2e1 100644 --- a/cpp/pybind/t/geometry/pointcloud.cpp +++ b/cpp/pybind/t/geometry/pointcloud.cpp @@ -655,6 +655,7 @@ The implementation is inspired by the PCL implementation. Reference: Example: This code generates a set of straight lines from a point cloud:: + import open3d as o3d import numpy as np pcd = o3d.t.geometry.PointCloud(np.random.rand(10,3))