obj = FILLET/"PMOD3",line1,"PMOD3",line2,RADIUS,r[,NOTRIM][,IFERR,label:]
Creates a fillet between two previously defined objects. The fillet radius center is located by specifying its position relative to the objects using positional modifiers. The fillet is created counterclockwise from the first to the second object.
Parameter |
Description |
PMOD3 |
A positional modifier which is used to indicate which side of the existing line the fillet lies on. The direction is in reference to the work coordinate system. |
line1,line2 |
The two existing lines to be filleted. The lines do not have to intersect, but must be co-planar and the maximum distance between the two points of tangency must be less than or equal to twice the specified radius of the fillet. The fillet is constructed counterclockwise from the first line to the second line. |
RADIUS |
Minor word that indicates that the radius of the fillet is to be specified. |
r |
A positive value which establishes the fillet radius. If the radius is invalid, the error message NO FILLET displays. |
NOTRIM |
If the NOTRIM parameter is included the objects remain unchanged, if omitted the objects are trimmed to the points of tangency. |
IFERR,label: |
Specifies a label to which program execution jumps if an error occurs. |
Creating a fillet between two lines where the center of the fillet is defined using positional modifiers.
Declaration
ENTITY/LN1,LN2,FLT1
Geometry Definition
LN1 =LINE/-1,0,1,0
LN2 =LINE/0,-1,0,1
Fillet Definition
FLT1=FILLET/XSMALL,LN2,YLARGE,LN1,RADIUS,.5,$
NOTRIM
Lines Filleted in the Second Quadrant
Creating a fillet between two lines by specifying the fillet center using positional modifiers.
Declaration
ENTITY/LN1,LN2,FLT1
Geometry Definition
LN1 =LINE/-1,0,1,0
LN2 =LINE/0,-1,0,1
Fillet Definition
FLT1=FILLET/XLARGE,LN2,YSMALL,LN1,RADIUS,.5,$
NOTRIM
Lines Filleted in the Fourth Quadrant