BrepCreateFilletSurfaceCurve Method |
Create a fillet (rational arcs or non-rational arc approxiation or chamfered surface
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 9.0
Syntaxpublic static bool CreateFilletSurfaceCurve(
BrepFace face,
Point2d uv,
Curve curve,
double t,
BrepFilletSurfaceSettings settings,
out BrepFilletSurfaceResults results
)
Public Shared Function CreateFilletSurfaceCurve (
face As BrepFace,
uv As Point2d,
curve As Curve,
t As Double,
settings As BrepFilletSurfaceSettings,
<OutAttribute> ByRef results As BrepFilletSurfaceResults
) As Boolean
Parameters
- face
- Type: Rhino.GeometryBrepFace
Face to fillet from. - uv
- Type: Rhino.GeometryPoint2d
A parameter on the face at the side you want to keep after filleting. - curve
- Type: Rhino.GeometryCurve
Curve to fillet to. - t
- Type: SystemDouble
A parameter on the curve close to the point on the face. - settings
- Type: Rhino.GeometryBrepFilletSurfaceSettings
The settings to use for filleting - results
- Type: Rhino.GeometryBrepFilletSurfaceResults
If true is returned, this contains the fillet results.
Return Value
Type:
Booleantrue if successful
Exceptions| Exception | Condition |
|---|
| ArgumentNullException | |
See Also