function [x,y,n] = closestvertex(hThis,pos,orient)
% CLOSESTVERTEX Return X,Y location of closest Target vertex
%
% Thanks to <a href="http://www.mathworks.com/matlabcentral/profile/authors/3354683-yaroslav">Yaroslav Don</a> for his assistance in updating cursorbar for
% MATLAB Graphics and for his contribution of new functionality.
% Copyright 2003-2016 The MathWorks, Inc.
% Change Log:
% 13 Feb 2015: First version posted on the MathWorks file exchange.
% 14 May 2015: Added logarithmic scale support.
% input check
if nargin<3 || isempty(orient)
orient = hThis.Orientation;
end
% initialize
hTarget = hThis.Target;
hAxes = hThis.Parent;
%
x = [];
y = [];
% don't need to find closest vertex if the Target is an axes
if isTargetAxes(hThis)
return
end
% get XData and YData
x = hThis.TargetXData;
y = hThis.TargetYData;
n = hThis.TargetNData;
% logarithmic scale requires a logarithmic distance