File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -127,8 +127,8 @@ pmp_simplify_polylines(
127127
128128compas::RowMatrixXd
129129pmp_closest_points_on_polyline (
130- const compas::RowMatrixXd& query_points,
131- const compas::RowMatrixXd& polyline)
130+ Eigen::Ref< const compas::RowMatrixXd> query_points,
131+ Eigen::Ref< const compas::RowMatrixXd> polyline)
132132{
133133 int n_queries = query_points.rows ();
134134 int q_cols = query_points.cols ();
Original file line number Diff line number Diff line change @@ -31,5 +31,5 @@ pmp_simplify_polylines(
3131 */
3232compas::RowMatrixXd
3333pmp_closest_points_on_polyline (
34- const compas::RowMatrixXd& query_points,
35- const compas::RowMatrixXd& polyline);
34+ Eigen::Ref< const compas::RowMatrixXd> query_points,
35+ Eigen::Ref< const compas::RowMatrixXd> polyline);
You can’t perform that action at this time.
0 commit comments