Skip to content

Commit

Permalink
Merge pull request #4616 from dpiskas/patch-2
Browse files Browse the repository at this point in the history
correct method syntax
  • Loading branch information
dorodnic authored Aug 13, 2019
2 parents 8e55c85 + 96a2dcb commit a0419dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wrappers/matlab/points.m
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function export_to_ply(this, fname, texture)
texture_coordinates = realsense.librealsense_mex('rs2::points', 'get_texture_coordinates', this.objectHandle);
end
function s = point_count(this)
realsense.librealsense_mex('rs2::points', 'size', this.objectHandle);
s = realsense.librealsense_mex('rs2::points', 'size', this.objectHandle);
end
end
end

0 comments on commit a0419dd

Please sign in to comment.