IMeshCleaned Method

Create a new mesh based on another mesh doing a sanity check and removing faces with a smaller area than lim_area.

Definition

Namespace: Karamba.Geometry
Assembly: KarambaCommon (in KarambaCommon.dll) Version: 3.0.8.0+eb23a7103f0eca0b6d808121e15fec6899194e15
C#
IMesh Cleaned(
	double lim_area,
	NKDTreeDupli point_tree,
	IReadOnlyList<Point3> points,
	out List<int> cleaned_global_indexes,
	MessageLogger logger
)

Parameters

lim_area  Double
limit area for culling faces.
point_tree  NKDTreeDupli
kd-tree for input points.
points  IReadOnlyListPoint3
list of points of global model.
cleaned_global_indexes  ListInt32
list of new global indexes of all vertices.
logger  MessageLogger
gets information about cleaning process.

Return Value

IMesh

[Missing <returns> documentation for "M:Karamba.Geometry.IMesh.Cleaned(System.Double,feb.NKDTreeDupli,System.Collections.Generic.IReadOnlyList{Karamba.Geometry.Point3},System.Collections.Generic.List{System.Int32}@,Karamba.Utilities.MessageLogger)"]

See Also