
Pockets and islands can be overlapped to form a new contour. You can thus enlarge the area of a pocket by another pocket or reduce it by an island.
Pockets and islands can be overlapped to form a new contour. You can thus enlarge the area of a pocket by another pocket or reduce it by an island.
The following examples show contour subprograms that are called by Cycle 14 CONTOUR in a main program.
Pockets A and B overlap.
The control calculates the points of intersection S1 and S2. They need not be programmed.
The pockets are programmed as full circles.
11 LBL 1 |
12 L X+10 Y+10 RR |
13 CC X+35 Y+50 |
14 C X+10 Y+50 DR- |
15 LBL 0 |
16 LBL 2 |
17 L X+90 Y+50 RR |
18 CC X+65 Y+50 |
19 C X+90 Y+50 DR- |
20 LBL 0 |
Both surfaces A and B are to be machined, including the overlapping area:
11 LBL 1 |
12 L X+10 Y+50 RR |
13 CC X+35 Y+50 |
14 C X+10 Y+50 DR- |
15 LBL 0 |
16 LBL 2 |
17 L X+90 Y+50 RR |
18 CC X+65 Y+50 |
19 C X+90 Y+50 DR- |
20 LBL 0 |
Surface A is to be machined without the portion overlapped by B:
11 LBL 1 |
12 L X+10 Y+50 RR |
13 CC X+35 Y+50 |
14 C X+10 Y+50 DR- |
15 LBL 0 |
16 LBL 2 |
17 L X+40 Y+50 RL |
18 CC X+65 Y+50 |
19 C X+40 Y+50 DR- |
20 LBL 0 |
Only the area where A and B overlap is to be machined. (The areas covered by A or B alone are to be left unmachined.)
11 LBL 1 |
12 L X+60 Y+50 RR |
13 CC X+35 Y+50 |
14 C X+60 Y+50 DR- |
15 LBL 0 |
16 LBL 2 |
17 L X+90 Y+50 RR |
18 CC X+65 Y+50 |
19 C X+90 Y+50 DR- |
20 LBL 0 |