This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/geometry/GEO_point_merge_by_distance.hh
Hans Goudey c3b9a4e001 Cleanup: Access attributes with new API instead of geometry components
Remove the boilerplate of using a local geometry component just to use
the attribute API that was necessary before b876ce2a4a.
2022-07-19 22:34:32 -05:00

25 lines
628 B
C++

/* SPDX-License-Identifier: GPL-2.0-or-later */
#include "BLI_index_mask.hh"
#pragma once
struct PointCloud;
class PointCloudComponent;
/** \file
* \ingroup geo
*/
namespace blender::geometry {
/**
* Merge selected points into other selected points within the \a merge_distance. The merged
* indices favor speed over accuracy, since the results will depend on the order of the points.
*/
PointCloud *point_merge_by_distance(const PointCloud &src_points,
const float merge_distance,
const IndexMask selection);
} // namespace blender::geometry