tornavis/source/blender/geometry/GEO_point_merge_by_distance.hh

31 lines
730 B
C++

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
#include "BLI_index_mask.hh"
#pragma once
struct PointCloud;
namespace blender::bke {
class AnonymousAttributePropagationInfo;
}
/** \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,
const bke::AnonymousAttributePropagationInfo &propagation_info);
} // namespace blender::geometry