clear.m

Back to PointKdTree (Matlab)

matlab/+pastelgeometry/@PointKdTree/

% CLEAR
% Removes points and structure from a kd-tree.
%
% clear()

% Description: Removes points and structure from a kd-tree.
% DocumentationOf: PointKdTree.m

function clear(self)
    eval(import_pastel);

    pastelgeometrymatlab(...
        'pointkdtree_clear', ...
        self.kdTree)
end