SlideShare a Scribd company logo
Different cases for Line Clipping
1. Both endpoints of the line lie with in the clipping area. This means that the
line is included completely in the clipping area, so that the whole line must be
drawn.
Clip
rectangle
B
A
B
A
1
Conti….
3. Both end points are located outside the clipping area and the line do not intersect the
clipping area. In the case , the line lies completely outside the clipping area and can be
neglected for the scene.
4. Both endpoints are located outside the clipping area and the line intersect the clipping
area. The two intersection points of the line with the clipping are must be determined.
Only the part of the line between these two intersection points should be drawn.
C
D’
B
A
G’
H'
Clip
rectangle
B
A
D
D’
C
G’
H'
G
H
I’
I
J’
J
E
F
2
Mid point subdivision algorithm
 This method divide the line into three category:
I. Category 1: Visible line
II. Category 2: not visible line
III. Category 3: candidate for Clipping.
An alternative way to process a line in category 3 is based on binary
search.The line is divided at its midpointsinto two shorter line segments.
Each line in a category three is divided again into shorter segments and
categorized.This bisection and categorization process continue until eavh
line segment that spans across a window boundary reaches a threshold for
line size and all other segments are either in a category 1 (visible) or in
category 2 (Not visible.)
3
Mid-point subdivision algorithm
The mid points coordinates are (x m, y m) of a line joining the points(X1,Y1)and (X2,Y2)
are given by:
X m= X1+X2/2 and
Y M= Y1+Y2/2 Q
P
6
7
8
5
1
I1
I2
2
4
3
Figure: illustrates how midpoint subdivision is used to zoom in onto the two Intersection points I1 and I2 with 10 bisection.
4
Comparison b/w Cohen-Sutherland and Mid-point subdivision clipping Algorithm
• Midpoint subdivision algorithm is a special case of Cohen-sutherland algorithm,
where the intersection is not computed by equation solving. It is computed by a
midpoint approximation method, which is suitable for hardware and it is very
fast and efficient.
• The maximum time is consume in the clipping process is to do intersection calculation
with the window boundaries.
• The Cohen-sutherland algorithm reduces these calculation by first discarding that lines
those can be trivially accepted or rejected.
5
Polygon Clipping
 The simplest curve is a line segment or simply a line. A sequence of line where the
following line starts where the previous one ends is called a polyline. If the last line
segment of the polyline ends where the first line segment started, the polyline is called
a polygon. A polygon is defined by n number of sides in the polygon. We can divide
polygon into two classes.
 A convex polygon is a polygon such that for any two points inside the polygon , all
the point of the line segment connecting them are also inside the polygon. A triangle
is always a convex one.
Polygon
Convex
Polygon
Concave
Polygon
P
Q
6
Conti…
 A Concave polygon is one which is not convex.. A polygon is said to be a concave
if the line joining any two interior points of the polygon does not lies completely
inside the polygon.
 There are four possible cases when processes vertices in sequence around the
parameter of the polygon. As each pair of adjacent polygon vertices is passed to a
window boundary clipper. We make the following test.
P
Q
7
Conti…
 Case 1: If the first vertex is outside the window boundary and second vertex
is inside the window boundary then both the intersection point of a polygon
edge with the window boundary and second vertex are added to the output
vertex list.
 Case 2: If both input vertices are inside the window boundary. Only the
second vertex is added to the Vertex list
Case3: If the first vertex is inside the window boundary and the second
vertex is outside the window boundary then only the edge intersection with the
window boundary is added to the output vertex list.
 Case 4: If both the input vertices are outside the window boundary then
nothing is save to the output list.
8
SUTHERLAND AND HODGEMAN
ALGORITHM(Polygon clipping)
 Polygon clipping is a process of clipping a polygon by considering
the edge of that as different line segments. If a polygon is clipped
against a rectangular window then it is possible that we get various
unconnected edges of a polygon. To get a closed polygon of unconnected
edges we connect theses edges along the side of a clipping window to
form a closed polygon.
 The Sutherland –Hodgeman polygon clipping algorithm clips polygon
against convex clipping windows. The Sutherland Hodgeman Polygon
clipping algorithm may produce connecting lines that were not in the
original polygon. When the subject polygon is concave theses connecting
lines may be undesirable artifacts.
 There are four situation to save vertices in output vertex list.
9
Conti……
1. If the first vertex is outside the window boundary and second vertex is inside the
window boundary then both the intersection point of a polygon edge with the
window boundary and second vertex are added to the output vertex list.Ex:save v1’,v2.
POLYGON
WINDOW(W)
2. If both input vertices are inside the window boundary. Only the second vertex is
added to the Vertex list
POLYGON
WINDOW(w)
V1
V1’
V2
V1
V2
10
Cont…..
3. If the first vertex is inside the window boundary and the second vertex is
outside the window boundary then only the edge intersection with the
window boundary is added to the output vertex list.Ex: v1’, v1.
POLYGON
WINDOW(W)
4. If both the input vertices are outside the window boundary then nothing is
save to the output list.
POLYGON
WINDOW(W)
’
V2
V1
V2
V1’
V1
11

More Related Content

Similar to yutd65.pptx

yyfty.pptx
yyfty.pptxyyfty.pptx
yyfty.pptx
nabingyawali5
 
hgfcgf.pptx
hgfcgf.pptxhgfcgf.pptx
hgfcgf.pptx
nabingyawali5
 
ytt.pptx
ytt.pptxytt.pptx
ytt.pptx
nabingyawali5
 
ohu.pptx
ohu.pptxohu.pptx
ohu.pptx
nabingyawali5
 
ydyu.pptx
ydyu.pptxydyu.pptx
ydyu.pptx
nabingyawali5
 
ibuib.pptx
ibuib.pptxibuib.pptx
ibuib.pptx
nabingyawali5
 
kgv.pptx
kgv.pptxkgv.pptx
kgv.pptx
sandeshbhusal6
 
Clipping
ClippingClipping
Clipping
nehrurevathy
 
99995327.ppt
99995327.ppt99995327.ppt
99995327.ppt
ABDULSAMADKAZI
 
lecture8 clipping
lecture8 clippinglecture8 clipping
Clipping computer graphics
Clipping  computer graphicsClipping  computer graphics
Clipping computer graphics
ShaishavShah8
 
Lecture 2d point,curve,text,line clipping
Lecture   2d point,curve,text,line clippingLecture   2d point,curve,text,line clipping
Lecture 2d point,curve,text,line clipping
avelraj
 
Sutherland hodgman polygon clipping algorithm
Sutherland hodgman polygon clipping algorithmSutherland hodgman polygon clipping algorithm
Sutherland hodgman polygon clipping algorithm
Tawfiq Ahmed
 
Liang- Barsky Algorithm, Polygon clipping & pipeline clipping of polygons
Liang- Barsky Algorithm, Polygon clipping & pipeline clipping of polygonsLiang- Barsky Algorithm, Polygon clipping & pipeline clipping of polygons
Liang- Barsky Algorithm, Polygon clipping & pipeline clipping of polygons
Lahiru Danushka
 
Clipping
ClippingClipping
Clipping
Udayan Gupta
 
Clipping
ClippingClipping
Clipping
AMIT VIRAMGAMI
 
Polygon filling
Polygon fillingPolygon filling
Windowing clipping
Windowing   clippingWindowing   clipping
Windowing clipping
Shweta Shah
 
line clipping
line clipping line clipping
line clipping
Saurabh Soni
 
Polygon clipping
Polygon clippingPolygon clipping
Polygon clipping
Ankit Garg
 

Similar to yutd65.pptx (20)

yyfty.pptx
yyfty.pptxyyfty.pptx
yyfty.pptx
 
hgfcgf.pptx
hgfcgf.pptxhgfcgf.pptx
hgfcgf.pptx
 
ytt.pptx
ytt.pptxytt.pptx
ytt.pptx
 
ohu.pptx
ohu.pptxohu.pptx
ohu.pptx
 
ydyu.pptx
ydyu.pptxydyu.pptx
ydyu.pptx
 
ibuib.pptx
ibuib.pptxibuib.pptx
ibuib.pptx
 
kgv.pptx
kgv.pptxkgv.pptx
kgv.pptx
 
Clipping
ClippingClipping
Clipping
 
99995327.ppt
99995327.ppt99995327.ppt
99995327.ppt
 
lecture8 clipping
lecture8 clippinglecture8 clipping
lecture8 clipping
 
Clipping computer graphics
Clipping  computer graphicsClipping  computer graphics
Clipping computer graphics
 
Lecture 2d point,curve,text,line clipping
Lecture   2d point,curve,text,line clippingLecture   2d point,curve,text,line clipping
Lecture 2d point,curve,text,line clipping
 
Sutherland hodgman polygon clipping algorithm
Sutherland hodgman polygon clipping algorithmSutherland hodgman polygon clipping algorithm
Sutherland hodgman polygon clipping algorithm
 
Liang- Barsky Algorithm, Polygon clipping & pipeline clipping of polygons
Liang- Barsky Algorithm, Polygon clipping & pipeline clipping of polygonsLiang- Barsky Algorithm, Polygon clipping & pipeline clipping of polygons
Liang- Barsky Algorithm, Polygon clipping & pipeline clipping of polygons
 
Clipping
ClippingClipping
Clipping
 
Clipping
ClippingClipping
Clipping
 
Polygon filling
Polygon fillingPolygon filling
Polygon filling
 
Windowing clipping
Windowing   clippingWindowing   clipping
Windowing clipping
 
line clipping
line clipping line clipping
line clipping
 
Polygon clipping
Polygon clippingPolygon clipping
Polygon clipping
 

Recently uploaded

Epcon is One of the World's leading Manufacturing Companies.
Epcon is One of the World's leading Manufacturing Companies.Epcon is One of the World's leading Manufacturing Companies.
Epcon is One of the World's leading Manufacturing Companies.
EpconLP
 
原版制作(Newcastle毕业证书)纽卡斯尔大学毕业证在读证明一模一样
原版制作(Newcastle毕业证书)纽卡斯尔大学毕业证在读证明一模一样原版制作(Newcastle毕业证书)纽卡斯尔大学毕业证在读证明一模一样
原版制作(Newcastle毕业证书)纽卡斯尔大学毕业证在读证明一模一样
p2npnqp
 
Climate Change All over the World .pptx
Climate Change All over the World  .pptxClimate Change All over the World  .pptx
Climate Change All over the World .pptx
sairaanwer024
 
Overview of the Global Peatlands Assessment
Overview of the Global Peatlands AssessmentOverview of the Global Peatlands Assessment
Overview of the Global Peatlands Assessment
Global Landscapes Forum (GLF)
 
Global Peatlands Map and Hotspot Explanation Atlas
Global Peatlands Map and Hotspot Explanation AtlasGlobal Peatlands Map and Hotspot Explanation Atlas
Global Peatlands Map and Hotspot Explanation Atlas
Global Landscapes Forum (GLF)
 
Enhanced action and stakeholder engagement for sustainable peatland management
Enhanced action and stakeholder engagement for sustainable peatland managementEnhanced action and stakeholder engagement for sustainable peatland management
Enhanced action and stakeholder engagement for sustainable peatland management
Global Landscapes Forum (GLF)
 
Evolving Lifecycles with High Resolution Site Characterization (HRSC) and 3-D...
Evolving Lifecycles with High Resolution Site Characterization (HRSC) and 3-D...Evolving Lifecycles with High Resolution Site Characterization (HRSC) and 3-D...
Evolving Lifecycles with High Resolution Site Characterization (HRSC) and 3-D...
Joshua Orris
 
Global Climate Change and global warming
Global Climate Change and global warmingGlobal Climate Change and global warming
Global Climate Change and global warming
ballkicker20
 
Promoting Multilateral Cooperation for Sustainable Peatland management
Promoting Multilateral Cooperation for Sustainable Peatland managementPromoting Multilateral Cooperation for Sustainable Peatland management
Promoting Multilateral Cooperation for Sustainable Peatland management
Global Landscapes Forum (GLF)
 
Peatland Management in Indonesia, Science to Policy and Knowledge Education
Peatland Management in Indonesia, Science to Policy and Knowledge EducationPeatland Management in Indonesia, Science to Policy and Knowledge Education
Peatland Management in Indonesia, Science to Policy and Knowledge Education
Global Landscapes Forum (GLF)
 
Wildlife-AnIntroduction.pdf so that you know more about our environment
Wildlife-AnIntroduction.pdf so that you know more about our environmentWildlife-AnIntroduction.pdf so that you know more about our environment
Wildlife-AnIntroduction.pdf so that you know more about our environment
amishajha2407
 
Kinetic studies on malachite green dye adsorption from aqueous solutions by A...
Kinetic studies on malachite green dye adsorption from aqueous solutions by A...Kinetic studies on malachite green dye adsorption from aqueous solutions by A...
Kinetic studies on malachite green dye adsorption from aqueous solutions by A...
Open Access Research Paper
 
Improving the viability of probiotics by encapsulation methods for developmen...
Improving the viability of probiotics by encapsulation methods for developmen...Improving the viability of probiotics by encapsulation methods for developmen...
Improving the viability of probiotics by encapsulation methods for developmen...
Open Access Research Paper
 
Improving the Management of Peatlands and the Capacities of Stakeholders in I...
Improving the Management of Peatlands and the Capacities of Stakeholders in I...Improving the Management of Peatlands and the Capacities of Stakeholders in I...
Improving the Management of Peatlands and the Capacities of Stakeholders in I...
Global Landscapes Forum (GLF)
 
DENR-PENRO-Bulacan-Presentation Philippine EIS
DENR-PENRO-Bulacan-Presentation Philippine EISDENR-PENRO-Bulacan-Presentation Philippine EIS
DENR-PENRO-Bulacan-Presentation Philippine EIS
MarlonJayBayag
 
world-environment-day-2024-240601103559-14f4c0b4.pptx
world-environment-day-2024-240601103559-14f4c0b4.pptxworld-environment-day-2024-240601103559-14f4c0b4.pptx
world-environment-day-2024-240601103559-14f4c0b4.pptx
mfasna35
 
ENVIRONMENT~ Renewable Energy Sources and their future prospects.
ENVIRONMENT~ Renewable Energy Sources and their future prospects.ENVIRONMENT~ Renewable Energy Sources and their future prospects.
ENVIRONMENT~ Renewable Energy Sources and their future prospects.
tiwarimanvi3129
 
Microbial characterisation and identification, and potability of River Kuywa ...
Microbial characterisation and identification, and potability of River Kuywa ...Microbial characterisation and identification, and potability of River Kuywa ...
Microbial characterisation and identification, and potability of River Kuywa ...
Open Access Research Paper
 
Peatlands of Latin America and the Caribbean
Peatlands of Latin America and the CaribbeanPeatlands of Latin America and the Caribbean
Peatlands of Latin America and the Caribbean
Global Landscapes Forum (GLF)
 
在线办理(lboro毕业证书)拉夫堡大学毕业证学历证书一模一样
在线办理(lboro毕业证书)拉夫堡大学毕业证学历证书一模一样在线办理(lboro毕业证书)拉夫堡大学毕业证学历证书一模一样
在线办理(lboro毕业证书)拉夫堡大学毕业证学历证书一模一样
pjq9n1lk
 

Recently uploaded (20)

Epcon is One of the World's leading Manufacturing Companies.
Epcon is One of the World's leading Manufacturing Companies.Epcon is One of the World's leading Manufacturing Companies.
Epcon is One of the World's leading Manufacturing Companies.
 
原版制作(Newcastle毕业证书)纽卡斯尔大学毕业证在读证明一模一样
原版制作(Newcastle毕业证书)纽卡斯尔大学毕业证在读证明一模一样原版制作(Newcastle毕业证书)纽卡斯尔大学毕业证在读证明一模一样
原版制作(Newcastle毕业证书)纽卡斯尔大学毕业证在读证明一模一样
 
Climate Change All over the World .pptx
Climate Change All over the World  .pptxClimate Change All over the World  .pptx
Climate Change All over the World .pptx
 
Overview of the Global Peatlands Assessment
Overview of the Global Peatlands AssessmentOverview of the Global Peatlands Assessment
Overview of the Global Peatlands Assessment
 
Global Peatlands Map and Hotspot Explanation Atlas
Global Peatlands Map and Hotspot Explanation AtlasGlobal Peatlands Map and Hotspot Explanation Atlas
Global Peatlands Map and Hotspot Explanation Atlas
 
Enhanced action and stakeholder engagement for sustainable peatland management
Enhanced action and stakeholder engagement for sustainable peatland managementEnhanced action and stakeholder engagement for sustainable peatland management
Enhanced action and stakeholder engagement for sustainable peatland management
 
Evolving Lifecycles with High Resolution Site Characterization (HRSC) and 3-D...
Evolving Lifecycles with High Resolution Site Characterization (HRSC) and 3-D...Evolving Lifecycles with High Resolution Site Characterization (HRSC) and 3-D...
Evolving Lifecycles with High Resolution Site Characterization (HRSC) and 3-D...
 
Global Climate Change and global warming
Global Climate Change and global warmingGlobal Climate Change and global warming
Global Climate Change and global warming
 
Promoting Multilateral Cooperation for Sustainable Peatland management
Promoting Multilateral Cooperation for Sustainable Peatland managementPromoting Multilateral Cooperation for Sustainable Peatland management
Promoting Multilateral Cooperation for Sustainable Peatland management
 
Peatland Management in Indonesia, Science to Policy and Knowledge Education
Peatland Management in Indonesia, Science to Policy and Knowledge EducationPeatland Management in Indonesia, Science to Policy and Knowledge Education
Peatland Management in Indonesia, Science to Policy and Knowledge Education
 
Wildlife-AnIntroduction.pdf so that you know more about our environment
Wildlife-AnIntroduction.pdf so that you know more about our environmentWildlife-AnIntroduction.pdf so that you know more about our environment
Wildlife-AnIntroduction.pdf so that you know more about our environment
 
Kinetic studies on malachite green dye adsorption from aqueous solutions by A...
Kinetic studies on malachite green dye adsorption from aqueous solutions by A...Kinetic studies on malachite green dye adsorption from aqueous solutions by A...
Kinetic studies on malachite green dye adsorption from aqueous solutions by A...
 
Improving the viability of probiotics by encapsulation methods for developmen...
Improving the viability of probiotics by encapsulation methods for developmen...Improving the viability of probiotics by encapsulation methods for developmen...
Improving the viability of probiotics by encapsulation methods for developmen...
 
Improving the Management of Peatlands and the Capacities of Stakeholders in I...
Improving the Management of Peatlands and the Capacities of Stakeholders in I...Improving the Management of Peatlands and the Capacities of Stakeholders in I...
Improving the Management of Peatlands and the Capacities of Stakeholders in I...
 
DENR-PENRO-Bulacan-Presentation Philippine EIS
DENR-PENRO-Bulacan-Presentation Philippine EISDENR-PENRO-Bulacan-Presentation Philippine EIS
DENR-PENRO-Bulacan-Presentation Philippine EIS
 
world-environment-day-2024-240601103559-14f4c0b4.pptx
world-environment-day-2024-240601103559-14f4c0b4.pptxworld-environment-day-2024-240601103559-14f4c0b4.pptx
world-environment-day-2024-240601103559-14f4c0b4.pptx
 
ENVIRONMENT~ Renewable Energy Sources and their future prospects.
ENVIRONMENT~ Renewable Energy Sources and their future prospects.ENVIRONMENT~ Renewable Energy Sources and their future prospects.
ENVIRONMENT~ Renewable Energy Sources and their future prospects.
 
Microbial characterisation and identification, and potability of River Kuywa ...
Microbial characterisation and identification, and potability of River Kuywa ...Microbial characterisation and identification, and potability of River Kuywa ...
Microbial characterisation and identification, and potability of River Kuywa ...
 
Peatlands of Latin America and the Caribbean
Peatlands of Latin America and the CaribbeanPeatlands of Latin America and the Caribbean
Peatlands of Latin America and the Caribbean
 
在线办理(lboro毕业证书)拉夫堡大学毕业证学历证书一模一样
在线办理(lboro毕业证书)拉夫堡大学毕业证学历证书一模一样在线办理(lboro毕业证书)拉夫堡大学毕业证学历证书一模一样
在线办理(lboro毕业证书)拉夫堡大学毕业证学历证书一模一样
 

yutd65.pptx

  • 1. Different cases for Line Clipping 1. Both endpoints of the line lie with in the clipping area. This means that the line is included completely in the clipping area, so that the whole line must be drawn. Clip rectangle B A B A 1
  • 2. Conti…. 3. Both end points are located outside the clipping area and the line do not intersect the clipping area. In the case , the line lies completely outside the clipping area and can be neglected for the scene. 4. Both endpoints are located outside the clipping area and the line intersect the clipping area. The two intersection points of the line with the clipping are must be determined. Only the part of the line between these two intersection points should be drawn. C D’ B A G’ H' Clip rectangle B A D D’ C G’ H' G H I’ I J’ J E F 2
  • 3. Mid point subdivision algorithm  This method divide the line into three category: I. Category 1: Visible line II. Category 2: not visible line III. Category 3: candidate for Clipping. An alternative way to process a line in category 3 is based on binary search.The line is divided at its midpointsinto two shorter line segments. Each line in a category three is divided again into shorter segments and categorized.This bisection and categorization process continue until eavh line segment that spans across a window boundary reaches a threshold for line size and all other segments are either in a category 1 (visible) or in category 2 (Not visible.) 3
  • 4. Mid-point subdivision algorithm The mid points coordinates are (x m, y m) of a line joining the points(X1,Y1)and (X2,Y2) are given by: X m= X1+X2/2 and Y M= Y1+Y2/2 Q P 6 7 8 5 1 I1 I2 2 4 3 Figure: illustrates how midpoint subdivision is used to zoom in onto the two Intersection points I1 and I2 with 10 bisection. 4
  • 5. Comparison b/w Cohen-Sutherland and Mid-point subdivision clipping Algorithm • Midpoint subdivision algorithm is a special case of Cohen-sutherland algorithm, where the intersection is not computed by equation solving. It is computed by a midpoint approximation method, which is suitable for hardware and it is very fast and efficient. • The maximum time is consume in the clipping process is to do intersection calculation with the window boundaries. • The Cohen-sutherland algorithm reduces these calculation by first discarding that lines those can be trivially accepted or rejected. 5
  • 6. Polygon Clipping  The simplest curve is a line segment or simply a line. A sequence of line where the following line starts where the previous one ends is called a polyline. If the last line segment of the polyline ends where the first line segment started, the polyline is called a polygon. A polygon is defined by n number of sides in the polygon. We can divide polygon into two classes.  A convex polygon is a polygon such that for any two points inside the polygon , all the point of the line segment connecting them are also inside the polygon. A triangle is always a convex one. Polygon Convex Polygon Concave Polygon P Q 6
  • 7. Conti…  A Concave polygon is one which is not convex.. A polygon is said to be a concave if the line joining any two interior points of the polygon does not lies completely inside the polygon.  There are four possible cases when processes vertices in sequence around the parameter of the polygon. As each pair of adjacent polygon vertices is passed to a window boundary clipper. We make the following test. P Q 7
  • 8. Conti…  Case 1: If the first vertex is outside the window boundary and second vertex is inside the window boundary then both the intersection point of a polygon edge with the window boundary and second vertex are added to the output vertex list.  Case 2: If both input vertices are inside the window boundary. Only the second vertex is added to the Vertex list Case3: If the first vertex is inside the window boundary and the second vertex is outside the window boundary then only the edge intersection with the window boundary is added to the output vertex list.  Case 4: If both the input vertices are outside the window boundary then nothing is save to the output list. 8
  • 9. SUTHERLAND AND HODGEMAN ALGORITHM(Polygon clipping)  Polygon clipping is a process of clipping a polygon by considering the edge of that as different line segments. If a polygon is clipped against a rectangular window then it is possible that we get various unconnected edges of a polygon. To get a closed polygon of unconnected edges we connect theses edges along the side of a clipping window to form a closed polygon.  The Sutherland –Hodgeman polygon clipping algorithm clips polygon against convex clipping windows. The Sutherland Hodgeman Polygon clipping algorithm may produce connecting lines that were not in the original polygon. When the subject polygon is concave theses connecting lines may be undesirable artifacts.  There are four situation to save vertices in output vertex list. 9
  • 10. Conti…… 1. If the first vertex is outside the window boundary and second vertex is inside the window boundary then both the intersection point of a polygon edge with the window boundary and second vertex are added to the output vertex list.Ex:save v1’,v2. POLYGON WINDOW(W) 2. If both input vertices are inside the window boundary. Only the second vertex is added to the Vertex list POLYGON WINDOW(w) V1 V1’ V2 V1 V2 10
  • 11. Cont….. 3. If the first vertex is inside the window boundary and the second vertex is outside the window boundary then only the edge intersection with the window boundary is added to the output vertex list.Ex: v1’, v1. POLYGON WINDOW(W) 4. If both the input vertices are outside the window boundary then nothing is save to the output list. POLYGON WINDOW(W) ’ V2 V1 V2 V1’ V1 11