Skip to content

Commit

Permalink
Update dxf_planefit.m
Browse files Browse the repository at this point in the history
fixed a bug related to the name of the fit3dplane function at line 155 (from fit3dplane_2 to fit3dplane)
  • Loading branch information
nicmenegoni authored Oct 5, 2022
1 parent aa561fe commit afdf71f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ROKA_algorithm/dxf_planefit.m
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
end
if (numel(temp_PC)/3)>2
if plane(1,1) == 0 && plane(1,2) == 0 && plane(1,3) == 0
plane(1,:)=fit3dplane_2(temp_PC);
plane(1,:)=fit3dplane(temp_PC);
else
plane(1+numel(plane)/13,:)=fit3dplane(temp_PC);
end
Expand Down

0 comments on commit afdf71f

Please sign in to comment.