BrepFilletSurfaceSettingsCreateChamferSettings Method |
Create settings for chamfered surfaces
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 9.0
Syntaxpublic static BrepFilletSurfaceSettings CreateChamferSettings(
double radius0,
double radius1,
double tolerance,
bool trim,
bool extend
)
Public Shared Function CreateChamferSettings (
radius0 As Double,
radius1 As Double,
tolerance As Double,
trim As Boolean,
extend As Boolean
) As BrepFilletSurfaceSettings
Parameters
- radius0
- Type: SystemDouble
The distance from the intersection of face0 to the edge of the chamfer. - radius1
- Type: SystemDouble
The distance from the intersection of face1 to the edge of the chamfer. - tolerance
- Type: SystemDouble
The tolerance. When in doubt, use the document's model absolute tolerance. - trim
- Type: SystemBoolean
If true, the input faces will be trimmed, if false, the input faces will be split. - extend
- Type: SystemBoolean
If true, then when one input surface is longer than the other, the fillet surface is extended to the input surface edges.
Return Value
Type:
BrepFilletSurfaceSettings[Missing <returns> documentation for "M:Rhino.Geometry.Brep.FilletSurfaceSettings.CreateChamferSettings(System.Double,System.Double,System.Double,System.Boolean,System.Boolean)"]
See Also