DXFReaderNETControlFillet Method
|
Rounds and fillets the edges of objects.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public bool Fillet(
EntityObject Entity1,
EntityObject Entity2,
double Radius
)
Public Function Fillet (
Entity1 As EntityObject,
Entity2 As EntityObject,
Radius As Double
) As Boolean
public:
bool Fillet(
EntityObject^ Entity1,
EntityObject^ Entity2,
double Radius
)
member Fillet :
Entity1 : EntityObject *
Entity2 : EntityObject *
Radius : float -> bool
METHOD Fillet(
Entity1 AS EntityObject,
Entity2 AS EntityObject,
Radius AS REAL8
) AS LOGIC
Parameters
- Entity1
- Type: DXFReaderNET.EntitiesEntityObject
First entity - Entity2
- Type: DXFReaderNET.EntitiesEntityObject
Second entity - Radius
- Type: SystemDouble
Fillet radius
Return Value
Type:
BooleanTrue if the edges are rounded.
Remarks If First entity is a Polyline and Second entity is nothing then all polyline vertexes are rounded.
See Also