Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions MeshDecimatorCore/Algorithms/DecimationAlgorithm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,9 @@ public abstract class DecimationAlgorithm
#region Properties

/// <summary>
/// Gets or sets if borders should be preserved.
/// Default value: false
/// Gets or sets the simplification options.
/// </summary>
public bool PreserveBorders { get; set; } = false;
public SimplificationOptions Options { get; set; } = SimplificationOptions.Default;

/// <summary>
/// Gets or sets the maximum vertex count. Set to zero for no limitation.
Expand Down
Loading
Loading