M_Rhino_Geometry_Brep_CreateFilletEdges - mcneel/rhinocommon-api-docs GitHub Wiki
Fillets, chamfers, or blends the edges of a brep.
Namespace: Rhino.Geometry
Assembly: RhinoCommon (in RhinoCommon.dll) Version: Rhino 6.0
C#
public static Brep[] CreateFilletEdges(
Brep brep,
IEnumerable<int> edgeIndices,
IEnumerable<double> startRadii,
IEnumerable<double> endRadii,
BlendType blendType,
RailType railType,
double tolerance
)
VB
Public Shared Function CreateFilletEdges (
brep As Brep,
edgeIndices As IEnumerable(Of Integer),
startRadii As IEnumerable(Of Double),
endRadii As IEnumerable(Of Double),
blendType As BlendType,
railType As RailType,
tolerance As Double
) As Brep()
- brep
- Type: Rhino.Geometry.Brep
The brep to fillet, chamfer, or blend edges. - edgeIndices
- Type: System.Collections.Generic.IEnumerable(Int32)
An array of one or more edge indices where the fillet, chamfer, or blend will occur. - startRadii
- Type: System.Collections.Generic.IEnumerable(Double)
An array of starting fillet, chamfer, or blend radaii, one for each edge index. - endRadii
- Type: System.Collections.Generic.IEnumerable(Double)
An array of ending fillet, chamfer, or blend radaii, one for each edge index. - blendType
- Type: Rhino.Geometry.BlendType
The blend type. - railType
- Type: Rhino.Geometry.RailType
The rail type. - tolerance
- Type: System.Double
The tolerance to be used to perform calculations.
Type: Brep[]
Array of Breps if successful.
Supported in: 6.0.16224.21491