RhinoCommon API
new_releases
RhinoCommon documentation has a new look. The old site can still be found here.
play_arrow
Rhino
play_arrow
Rhino.ApplicationSettings
play_arrow
Rhino.Collections
play_arrow
Rhino.Commands
play_arrow
Rhino.Display
play_arrow
Rhino.DocObjects
play_arrow
Rhino.DocObjects.Custom
play_arrow
Rhino.DocObjects.SnapShots
play_arrow
Rhino.DocObjects.Tables
play_arrow
Rhino.FileIO
play_arrow
Rhino.Geometry
play_arrow
Rhino.Geometry.Collections
play_arrow
Rhino.Geometry.Intersect
play_arrow
Rhino.Geometry.MeshRefinements
play_arrow
Rhino.Geometry.Morphs
play_arrow
Rhino.Input
play_arrow
Rhino.Input.Custom
play_arrow
Rhino.NodeInCode
play_arrow
Rhino.ObjectManager
play_arrow
Rhino.PlugIns
play_arrow
Rhino.Render
play_arrow
Rhino.Render.ChangeQueue
play_arrow
Rhino.Render.ChildSlotNames
play_arrow
Rhino.Render.CustomRenderMeshes
play_arrow
Rhino.Render.DataSources
play_arrow
Rhino.Render.Fields
play_arrow
Rhino.Render.ParameterNames
play_arrow
Rhino.Render.PostEffects
play_arrow
Rhino.Render.UI
play_arrow
Rhino.Runtime
play_arrow
Rhino.Runtime.InProcess
play_arrow
Rhino.Runtime.InteropWrappers
play_arrow
Rhino.Runtime.Notifications
play_arrow
Rhino.Runtime.RhinoAccounts
play_arrow
Rhino.UI
play_arrow
Rhino.UI.Controls
play_arrow
Rhino.UI.Controls.DataSource
play_arrow
Rhino.UI.Controls.ThumbnailUI
play_arrow
Rhino.UI.Controls.Thumbnaillist
play_arrow
Rhino.UI.Gumball
play_arrow
dotnetstart
home
/
Rhino.Geometry
/
CurveSimplifyOptions

CurveSimplifyOptions enum

Enumerates the options to use when simplifying a curve.

Derived Classes:

Namespace: Rhino.Geometry
CurveSimplifyOptions: references

keyboard_arrow_down
Values (8)

None = 0

 
No option is specified.

SplitAtFullyMultipleKnots = 1

 
Split NurbsCurves at fully multiple knots. Effectively turning single NURBS segments with kinks into multiple segments.

RebuildLines = 2

 
Replace linear segments with LineCurves.

RebuildArcs = 4

 
Replace partially circular segments with ArcCurves.

RebuildRationals = 8

 
Replace rational NURBS curve with constant weights with an equivalent non-rational NurbsCurve.

AdjustG1 = 16

 
Adjust segments that are G1 to each other. Segments might only be G1 within tolerance. This can affect downstream operations, such as offsetting. So, if G1 within tolerance, adjust segments so to be exactly G1.

Merge = 32

 
Merge adjacent co-linear lines or co-circular arcs or combine consecutive line segments into a polyline.

All = SplitAtFullyMultipleKnots | RebuildLines | RebuildArcs | RebuildRationals | AdjustG1 | Merge

 
Implies all of the simplification functions will be used.

Nothing found