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 a typo error
  • Loading branch information
nicmenegoni authored Oct 5, 2022
1 parent ec2e507 commit 9c6e238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DICE_application/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_2(temp_PC);
end
Expand Down

0 comments on commit 9c6e238

Please sign in to comment.