Next Article in Journal
Advanced Scene Perception for Augmented Reality
Next Article in Special Issue
Experimental Study of Radial Distortion Compensation for Camera Submerged Underwater Using Open SaltWaterDistortion Data Set
Previous Article in Journal
CorDeep and the Sacrobosco Dataset: Detection of Visual Elements in Historical Documents
Previous Article in Special Issue
A Very Fast Image Stitching Algorithm for PET Bottle Caps
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Line Clipping in 2D: Overview, Techniques and Algorithms

by
Dimitrios Matthes
and
Vasileios Drakopoulos
*
Department of Computer Science and Biomedical Informatics, University of Thessaly, 35131 Lamia, Greece
*
Author to whom correspondence should be addressed.
J. Imaging 2022, 8(10), 286; https://doi.org/10.3390/jimaging8100286
Submission received: 13 August 2022 / Revised: 28 September 2022 / Accepted: 5 October 2022 / Published: 17 October 2022
(This article belongs to the Special Issue Geometry Reconstruction from Images)

Abstract

:
Clipping, as a fundamental process in computer graphics, displays only the part of a scene which is needed to be displayed and rejects all others. In two dimensions, the clipping process can be applied to a variety of geometric primitives such as points, lines, polygons or curves. A line-clipping algorithm processes each line in a scene through a series of tests and intersection calculations to determine whether the entire line or any part of it is to be saved. It also calculates the intersection position of a line with the window edges so its major goal is to minimize these calculations. This article surveys important techniques and algorithms for line-clipping in 2D but it also includes some of the latest research made by the authors. The survey criteria include evaluation of all line-clipping algorithms against a rectangular window, line clipping versus polygon clipping, and our line clipping against a convex polygon, as well as all line-clipping algorithms against a convex polygon algorithm.

1. Introduction

In computer graphics, any procedure that eliminates those portions of a picture that are either inside or outside a specified region of space is referred to as a clipping algorithm or simply clipping. The region against which an object is to be clipped is called a clipping object. In two-dimensional clipping, if the clipping object is an axis-aligned rectangular parallelogram, it is often called the clipping window or clip window. Sometimes the clipping window is alluded to as the world window or the viewing window [1]. Usually, a clipping window is a rectangle in standard position, although we could use any shape for a clipping application, e.g., a convex polygon or a concave polygonal boundary [2]. For a three-dimensional scene, the clipping area is called clipping volume. The process of removing lines or portions of lines outside an area of interest is called line clipping. Usually, any line or part of it outside the viewing area is unnecessary and is removed; see Figure 1.
The line-clipping process uses mathematical equations or formulas for removing the unnecessary parts of the line. The programmer draws only the part of the line which is visible and inside the desired region by using, for example, the slope-intercept form y = a x + b , where a is the slope or gradient of the line, b is the y-intercept of the line and x is the independent variable of the function y = f ( x ) or just the vector equation. Most of the time, clipping is applied to extract a part of a scene or a world, for creating new object boundaries, for managing multiple areas of objects inside a window, and so on.
There are four fundamental algorithms for line clipping: Cohen–Sutherland, Cyrus–Beck [3], Liang–Barsky [4] and Nicholl–Lee–Nicholl [5]. Over the years, other algorithms for line clipping emerged, such as Midpoint Subdivision, Fast Clipping [6], Skala ’93 [7], Skala ’94 [8], Skala 2005 [9], S-Clip E2 [10], Ray [11], Andreev and Sofianska [12], Day [13], Rappoport [14], Dimri [15], but many of them are variations of the first ones. In general, the existing line-clipping algorithms can be classified into three types: the encoding approach (with the Cohen–Sutherland algorithm as a representative), the parametric approach (with the Cyrus–Beck and Liang–Barsky algorithms as representatives) and the Midpoint Subdivision algorithms.
A different algorithm for clipping line segments by a rectangular window on a rectangular coordinate system is presented in [16,17]. For the line segments that cannot be identified as completely inside or outside the window by simple tests, this algorithm applies affine transformations (the shearing transformations) to the line segments and the window and changes the slopes of the line segments and the shape of the window. A mathematical model for evaluating intersection points, and thereby clipping lines that decently rely on integral calculations, has been proposed in [18]. A fairly full picture of the relevant literature is presented in [19,20,21] until the day of their publication.
The present article aims to present an overview of the most common, as well as of the lesser-known, algorithms and techniques for clipping a line against a rectangular area or a convex polygon in a two-dimensional space. Moreover, two new algorithms were presented; one for clipping a line against a rectangular clipping window as well as a convex clipping region. These new algorithms overcome many disadvantages of the common ones.

2. Fundamental Line-Clipping Algorithms

2.1. Cohen–Sutherland

Intersection algorithms with a rectangular area (window), well known as line clipping or as line segment clipping algorithms, were developed and used for a flight simulator project led by Cohen [22] in 1969. Efficient coding of a line segment position coding leading to significant computational reduction was introduced in [23] and patented in [24]. It is considered to be one of the first line-clipping algorithms in computer graphics history and variations of this method are widely used. Processing time is reduced by performing more tests before proceeding to the intersection calculations. The two-dimensional space in which the line resides is divided into nine regions, eight “outside” regions and one “inside” region, and to each line endpoint is assigned a four-digit binary value called the region code (Figure 2). Each bit of the region code is used to indicate whether the point is inside or outside a region out of the nine ones [25].
The region code for each line endpoint is applied using the following method: The window edges are referenced in any order with the bit positions numbered one through four from the Least Significant Bit (LSB) to the Most Significant Bit (MSB) (see Figure 3). A value of one in any of these bits indicates that the endpoint is outside the clipping window. Likewise, a value of zero to all of these bits indicates that the endpoint is inside or on the clipping window. The region code is also known as outcode.
At first, the algorithm assigns an outcode to each line endpoint. Next, it determines if the line is inside the clipping window. A line that is inside the clipping window has both endpoint outcodes equal to 0000. Next, the algorithm checks if there are two bits with the value one in the same bit position for each endpoint. If this is true then the line is being rejected as it is completely outside the clipping window. To check this, a logical AND is performed and if the result is not 0000 then the line is neither inside nor crossing into the clipping window, so it can be eliminated. If the result is 0000 then the line may cross into the clipping window or it could intersect one or more boundaries without entering the clipping window. It is considered for clipping and the intersection points with the clipping-window edges have to be found. Each edge is being checked against the line and those portions of the line that are outside each boundary are being clipped.
Since the algorithm checks each line endpoint that is outside the clipping window against each boundary in order to find the corresponding coordinates of the intersection, the line endpoint coordinates may be successively replaced by the corresponding intersection coordinates until meeting the correct ones.

2.2. Cyrus–Beck

The Cyrus–Beck (CB) algorithm was published in 1978 and is based on a parametric representation of the line segments [3]:
P ( t ) = P 0 + t · ( P 1 P 0 ) . 0 t 1
The algorithm can be applied to a typical rectangular clipping window (Figure 4) or any other convex polygon, unlike the Cohen–Sutherland which uses only rectangular clipping windows. The number of sides is not important, although it does affect performance.
For any convex clipping window, the inward normals have to be calculated. These inward normals are vectors perpendicular to each window edge. For a typical rectangular clipping window, only four unique inward normals exist and all other normals are mathematically equivalent to these four (Figure 5). The inward normals can be used for finding the intersection points between the line segment and the edges.
The number of intersections of a straight line with the boundaries of the convex clipping window is equal to the number of the edges of the clipping window. The algorithm calculates all the intersections and classifies them either as Potentially Entering (PE) or Potentially Leaving (PL) relative to the clipping window. A PE intersection means that as we are moving on the line, the clipping window is “in the front” and we are going to “enter into” it. Likewise, a PL intersection means that as we are moving on the line, the clipping window is “in the back” and we are going to “leave out” of it. In practice, the algorithm checks each intersection if it is a PE or a PL point and calculates its t E or t L value, respectively, and forms two t groups; one group with all t E values and one group with all t L values (see Figure 6). The t values that are either less than zero or greater than one are rejected.
Since the line segment intersects the boundaries of the clipping window in, at most, two places, the algorithm selects only one t E value out of all the t E values which is the maximum one (closer to the clipping window). Similarly, it selects only one t L value out of all the t L values which is the minimum one.
The classification of the intersection points as PE or PL is performed by comparing the angle between each inward normal and the vector P 0 P 1 . If the angle is less than 90° then the intersection point is a PE. If the angle is greater than 90° then the intersection point is a PL (see Figure 7).
Cyrus–Beck is a generalized line clipping algorithm that was designed to be more efficient than other clipping algorithms, such as the Cohen–Sutherland. It uses repetitive clipping, is very stable and its performance is nearly independent of factors such as the geometrical distribution of clipped primitives [9]. Since the algorithm computes the intersection for each edge, its complexity is O ( N ) , where N is the number of edges. In most cases, it clips only once or twice unlike Cohen–Sutherland where the lines are clipped about four times. The algorithm can be easily modified to also clip three-dimensional lines.

2.3. Liang–Barsky

You-Dong Liang and Brian Barsky were based on Cyrus–Beck and developed an even faster algorithm for line clipping. Their algorithm uses the parametric line equations and does more line testing before proceeding to the intersection calculations. By using the parametric equation of the line, it solves four inequalities to find the range of the parameter for which the line is in the viewport [4].
For a line segment with endpoints P ( x 0 , y 0 ) and Q ( x 1 , y 1 ) , we can describe the line with the parametric form
x = x 0 + t Δ x y = y 0 + t Δ y 0 t 1
where Δ x = x 1 x 0 and Δ y = y 1 y 0 (see Figure 8).
Since the clipped line segment lies in the clipping window, the above parametric line equations can be combined with the following conditions
x min x 0 + t Δ x x max y min y 0 + t Δ y y max .
These conditions can also be written as
t Δ x x 0 x min t Δ x x max x 0 t Δ y y 0 y min t Δ y y max y 0
or, simply, as
t · p k q k k = 1 , 2 , 3 , 4
where k = 1 , 2 , 3 , and 4 correspond to the left, right, bottom, and top boundaries, respectively, and parameters p and q are defined as
p 1 = Δ x , q 1 = x 0 x min p 2 = Δ x , q 2 = x max x 0 p 3 = Δ y , q 3 = y 0 y min p 4 = Δ y , q 4 = y max y 0 .
From the aboves we can draw the following conclusions:
If the line has p k = 0 then it is parallel to the corresponding clipping-window edge.
If the line has p k = 0 and q k < 0 then it is completely outside and is being rejected.
If p k > 0 , the line proceeds from the inside to the outside.
If p k < 0 , the line proceeds from the outside to the inside.
For a nonzero value of p k , r k = q k p k gives value t for the intersection point of the line and the window edge. There are two (out of four) actual intersections with values t 1 and t 2 value, respectively. For t 1 , the algorithm calculates all t values for which p k < 0 (line proceeds from the outside to the inside) and assigns to it the maximum one. For t 2 , the algorithm calculates all t values for which p k > 0 (line proceeds from the inside to the outside) and assigns to it the minimum one. If t 1 > t 2 , the line is completely outside the clipping window and it can be rejected. Otherwise, the endpoints of the clipped line are calculated from the two values of parameter t.
In general, the Liang–Barsky algorithm is more efficient than the Cohen–Sutherland line-clipping algorithm as well as the Cyrus–Beck. It uses floating-point arithmetic for finding the appropriate endpoints with, at most, four computations [21]. In contrast, the Cohen and Sutherland algorithm can calculate intersections repeatedly even if the line is completely outside the clipping window. Moreover, the Cohen–Sutherland intersection calculation requires both a division and a multiplication. The algorithm can be easily modified to clip lines in a three-dimensional space.

2.4. Nicholl–Lee–Nicholl

The Nicholl–Lee–Nicholl (NLN) is an algorithm that was created in 1987 by Tina M. Nicholl, D.T. Lee and Robin A. Nicholl. Its main characteristic is that it avoids a lot of computations of the intersection points. The creators claim that its performance is better than other algorithms, e.g., the Cohen–Sutherland and Liang–Barsky, since it carries out more region testing and it performs fewer comparisons and divisions. Unfortunately, while Cohen–Sutherland and Liang–Barsky can easily extend to three dimensions, NLN clipping is limited only to two dimensions.
As already mentioned, Cohen–Sutherland divides the screen space into nine regions. For avoiding unnecessary checks and calculations, NLN adopts a similar scheme (Figure 9) but it uses only three out of the nine ones; the top left corner region, the left edge region and the window region (Figure 10).
The first endpoint of the line has to be in one of these three regions. If it lies on any of the other six, then it can be moved to one of these three regions using geometrical transformations. The second endpoint of the line is taken into account later. For example, if a line with endpoints P 0 and P 1 has the first endpoint directly above the clipping window then it can be translated into the left edge region using a 270 degrees clockwise rotation (see Figure 11).
All the available geometrical transformations are:
  • 90° clockwise rotation about the origin.
  • 180° clockwise rotation about the origin.
  • 270° clockwise rotation about the origin.
  • Reflection about the line x = y .
  • Reflection about the x axis.
Obviously, these geometrical transformations should also be applied to the boundaries of the clipping window as well as the line endpoints.
Assuming that P 0 and P 1 are not simultaneously inside the clipping window, the algorithm divides again the screen space into regions. The new regions are based on the position of the first line endpoint ( P 0 ). The boundaries of the new regions are semi-infinite line segments that start at the position of P 0 and pass through each clipping window corner. Since the algorithm uses three regions, there are three main cases:
  • P 0 is inside the clipping window and P 1 outside.
    The algorithm sets up four regions (L, T, R, B) as in Figure 12. Then, depending on which one of the four regions contains P 1 , it computes the line-intersection position with the corresponding window boundary.
  • P 0 is on the edge region and P 1 is outside the clipping window.
    The algorithm sets up four regions labeled L, LT, LR, and LB as in Figure 13. These four regions again determine a unique clipping-window edge for the line segment, relative to the position of P 1 . For instance, if P 1 is in any one of the three regions labeled L, the algorithm clips the line at the left window border and draws the line segment from this intersection point to P 1 . If P 1 is in region LT, it draws the line segment from the left window boundary to the top boundary. Likewise, the same logic applies to regions LR and LB. However, if P 1 is not in any of these four regions, the line is clipped entirely.
  • P 0 is on the corner region and P 1 is outside the clipping window.
    When P 0 is to the corner region, the algorithm uses one of the two sets as shown in Figure 14. The selection of (a) or (b) depends on the position of P 0 within the corner region. When P 0 is closer to the left clipping boundary of the window, the algorithm uses the regions in (a) of this figure but when P 0 is closer to the top clipping boundary of the window, it uses the regions in (b). If P 1 is in one of the regions T, L, TR, TB, LR, or LB, this determines a unique clipping-window border for the intersection calculations, otherwise, the entire line is rejected.
To determine the region in which P 1 is located, NLN compares the slope of the line segment against the slopes of the new boundaries. For example, if P 0 is inside the clipping window and P 1 is outside, m is the slope of the line segment P 0 P 1 and m 1 , m 2 , m 3 , m 4 are the slopes of the boundaries L, T, R, B, respectively (see Figure 15a), then according to the following conditions, P 1 is:
  • m 1 < m < m 2 P 1 is above the clipping window.
  • m 2 < m < m 3 P 1 is on the right of the clipping window.
  • m 3 < m < m 4 P 1 is below the clipping window.
  • m 4 < m < m 1 P 1 is on the left of the clipping window.
Suppose that P 1 is on the left region (see Figure 15b). From the parametric equations
x = x 0 + ( x 1 x 0 ) u y = y 0 + ( y 1 y 0 ) u
an x-intersection position on the left window boundary is calculated as x = x L , with u = ( x L x 0 ) / ( x 1 x 0 ) , so that the y-intersection position is
y = y 0 + y 1 y 0 x 1 x 0 ( x L x 0 )

3. Common Line-Clipping Algorithms

3.1. Midpoint Subdivision

Midpoint Subdivision (MS) is an extension of the Cohen–Sutherland algorithm and follows the divide and conquer strategy. It is mainly used to compute the visible areas of lines that are present in the clipping window. It follows the principle of bisecting the line into equal halves numerous times. The algorithm is not efficient unless it is implemented in hardware. Moreover, the Cohen–Sutherland line clipping algorithm requires the calculation of the intersection of the line with the window edge. These calculations can be avoided by repetitively subdividing the line at its midpoint.
At first, the algorithm categorizes the endpoints of the line segment and assigns a four-bit region code to each one like Cohen–Sutherland does. The code, also known as outcode, is determined according to which of the following nine regions of the plane the endpoint lies in (see Figure 16).
Starting from the Least Significant Bit (LSB), each bit represents one region; left, right, bottom, top (see Figure 17). If a line endpoint is inside that region then the corresponding bit is set to true (1) or otherwise false (0).
There are three possible cases for any given line.
  • Totally visible: If the outcode of both line segment endpoints is 0000 then the line segment is inside the clipping window and it is completely visible.
  • Totally invisible: Bitwise AND between the two outcodes of the line segment endpoints. If the result is not 0000 then the line endpoints share the same region and the line segment does not cross the clipping window so it is rejected.
  • Clipping candidate: If the line is in neither Category 1 nor Category 2 then it is partially visible and has to be subdivided into two equal parts. The visibility tests are then applied to each half. This subdivision process is repeated until we obtain completely visible and completely invisible line segments.

3.2. Skala 2005

The Skala 2005 (SKA05) performs line clipping against an ordinary rectangle clipping window as well as against any convex polygon. It does not require a division operation and uses homogeneous coordinates for input and output point representation. According to professor Vaclav Skala, its creator, it takes advantage of operations supported by vector–vector hardware [9].
The algorithm assumes a convex polygon P and a line p given as F ( x ) = a x + b y + c = 0 . As the line p subdivides the space into two half-spaces, the function F(x) is being evaluated for each vertex of the convex polygon (see Figure 18).
For the C i vertex, the classification is performed like this; the digit 1 means that the vertex is left to the line and the digit 0 means that it is right to the line. A sequence of 0 and 1 is formed and by the alternations from digit 0 to digit 1 and vice versa we can understand which edges of the polygon are being intersected by the line. These edges are marked as TAB1 and TAB2. For every possible combination of the TAB1 and TAB2, there is a binary value known as the MASK which is used in the next steps of the algorithm to determine which endpoints of the line are inside or outside the clipping area. No matter how many vertices, the TAB1 and TAB2 values are two, so the following table is used as an index to the TAB1-TAB2-MASK values; see Table 1).
Having found the intersections between the line and the edges that the TAB1 and TAB2 values indicate, the algorithm classifies the endpoints of the line segment in a similar way to how Cohen–Sutherland does. It divides the screen into nine regions with each region having a unique binary number with four digits, known as the outcode. The four digits of each outcode represent the regions LEFT-RIGHT-TOP-BOTTOM, respectively, which means that the MSB (Most Significant Bit) represents the LEFT region, the next bit represents the RIGHT region, the next bit represents the TOP region, and finally, the LSB (Least Significant Bit) represents the BOTTOM region (see Figure 19).
The outcode is calculated for each endpoint using the function “CODE” of Algorithm 1.
Algorithm 1: Function to determine the outcode of the endpoints.
function CODE(x);
begin
        c := [0000];
        if x < x min thenc := [1000]
               else if x > x max thenc := [0100];
        if y < y min thenc := c lor [1001]
               else if y > y max thenc := c lor [0010];
        CODE := c
end [CODE];
   The outcodes show which endpoints are inside or outside the clipping area. In some cases, the MASK is additionally used in order to decide which of the two intersection points has to be used in the clipping process. Finally, the clipped line is drawn.
The speed of the algorithm varies. For a standard rectangle clipping window, the algorithm may use a predefined TAB-MASK table in order to quickly calculate the TAB1 and TAB2 values so its speed is high. However, when the clipping area is a convex polygon the speed decreases for two reasons. The first one is related to the calculations of the alternations of the 0 and 1 digits; they have to be performed “on-the-fly”, so this procedure slows down the algorithm. The second has to do with the way the algorithm works. No matter how many the vertices of the polygon, it always classifies them as “left” or “right” to the line and then it calculates the two intersections. After that and by using these two intersections, it forms a rectangle clipping area and re-classifies as “left” or “right” the vertices of the rectangle. Then, it follows the procedure that was mentioned before, which is to calculate the outcodes of the endpoints of the line and then perform clipping. However, this “double classification” of the vertices makes the algorithm slower, something that is more obvious as the number of edges increases.

3.3. S-Clip E2

S-clip E2 (SCE2), is another clipping algorithm also made by professor Vaclav Skala in the year 2012. Technically, it is an improved Skala 2005 algorithm that is based on the principle “test first and then compute”. Unlike other algorithms, e.g., Cohen–Sutherland, it evaluates the position of the given line with respect to the corners of the clipping window [10]. The main difference between the S-clip E2 and the Skala 2005 is that there is no need to repeat the classification process for the intersection points. Suppose that the line that has to be clipped is defined by two points, A and B. Since the intersection points belong on this line, the algorithm calculates the parameter “t” of the parametric form of the line segment A B ( x = a + b t , y = c + d t ) for each one. Two “t” values derive (scalars), i.e., t min and t max and the resulting segment is determined as < t min , t max > < 0 , 1 > which is a trivial operation. If the orientation of the clipping window is known, no ordering of “t” values is needed.

4. Uncommon Line-Clipping Algorithms

4.1. Kodituwakku–Wijeweere–Chamikara

In 2013, another fast line clipping algorithm with a similar approach to the Cohen–Sutherland was introduced by Kodituwakku–Wijeweere–Chamikara [26]. The rectangular clipping window is defined by two points: ( m i n x , m i n y ) and ( m a x x , m a x y ) and the line is defined by two points A ( x 0 , y 0 ) and B ( x 1 , y 1 ) ; see Figure 20.
The coordinates of each line endpoint are checked against the boundaries of the rectangular clipping window. In case a coordinate exceeds the boundary of the clipping window then the coordinate of this boundary is used and the other coordinate is calculated by using the equation of the line in the two-dimensional space: y = m · x + c , where m is the slope of the line given by the formula: m = y 1 y 0 x 1 x 0 ; see Figure 21.

4.2. Matthes–Drakopoulos Line Clipping against a Rectangular Window

Each of the fundamental algorithms mentioned before has advantages and disadvantages. In 2019, Matthes and Drakopoulos introduced an efficient line-clipping algorithm [27] or [28] which aims at simplicity and speed and does only the necessary calculations in order to clip a line inside the clipping window.
Assume that we want to clip a line segment that crosses a rectangle clipping window that is defined by the points ( x min , y max ) and ( x max , y min ) . This clipping window is depicted in Figure 22.
Given two points ( x 1 , y 1 ) and ( x 2 , y 2 ) on the line that we want to clip, the slope m is constant and is defined by the fraction
m = y 2 y 1 x 2 x 1
For an arbitrary point ( x , y ) on the line, the previous ratio can be written as
m = y y 1 x x 1 .
Solving for y
y y 1 = m · ( x x 1 ) y = y 1 + m · ( x x 1 ) .
By replacing m in this equation with Equation (1)
y = y 1 + y 2 y 1 x 2 x 1 · ( x x 1 ) .
Solving for x, the equation becomes
x = x 1 + x 2 x 1 y 2 y 1 · ( y y 1 ) .
Equations (2) and (3) are two mathematical representations of the line equation y = m · x + b and will be used later by the algorithm in order to determine the part of the line that is inside the clipping window.
Suppose that the line segment which has to be clipped is defined by the points ( x 1 , y 1 ) and ( x 2 , y 2 ) .
  • Step 1
The first step of the algorithm checks if both points are outside the line clipping window and at the same time in the same region (top, bottom, right, left). If one of the following occurs then the entire line is rejected and the algorithm draws nothing (see Figure 23):
x 1 < x min AND x 2 < x min (line is left to the clipping window)
x 1 > x max AND x 2 > x max (line is right to the clipping window)
y 1 < y min AND y 2 < y min (line is under the clipping window)
y 1 > y max AND y 2 > y max (line is over the clipping window)
  • Step 2
In the second step, the algorithm compares the coordinates of the two points along with the boundaries of the clipping window. It compares each of the x 1 and x 2 coordinates with the x min and x max boundaries, respectively, as well as each one of the y 1 and y 2 coordinates with the y min and y max boundaries, respectively. If any of these coordinates are out of bounds, then the specific coordinate of the boundary is used in the equation that determines the line for performing clipping (see Figure 24).
For each of the coordinates of the two points and according to Equations (2) and (3), the comparisons and changes made are:
  • If x i < x min then
    x i = x min
    y i = y 1 + ( y 2 y 1 ) ( x 2 x 1 ) · ( x min x 1 )
  • If x i > x max then
    x i = x max
    y i = y 1 + ( y 2 y 1 ) ( x 2 x 1 ) · ( x max x 1 )
  • If y i < y min then
    y i = y min
    x i = x 1 + ( x 2 x 1 ) ( y 2 y 1 ) · ( y min x 1 )
  • If y i > y max then
    y i = y max
    x i = x 1 + ( x 2 x 1 ) ( y 2 y 1 ) · ( y max x 1 )
where i: from 1 to 2.
Note that in the above equations and when x i < x min or x i > x max , division with zero will never occur because x 1 x 2 from Step 1. Likewise, when y i < y min or y i > y max , division with zero will never occur because y 1 y 2 for the same reason.
  • Step 3
The third and final step checks if the new points, after the calculations, are inside the clipping window and if so, a line is being drawn between them.
The representation of the algorithm in pseudo-code follows:
  // INPUT DATA: x1, y1, x2, y2, xmin, ymax, xmax, ymin //
  if(!(x1 < xmin && x2 < xmin) && !(x1 > xmax && x2 > xmax))
    if(!(y1 < ymin && y2 < ymin) && !(y1 > ymax && y2 > ymax))
    {
      x[0] = x1;
      y[0] = y1;
      x[1] = x2;
      y[1] = y2;
      i = 1;
      do
      {
        if(x[i] < xmin)
        {
          x[i] = xmin;
          y[i] = ((y2 - y1)/(x2 - x1)) * (xmin - x1) + y1;
        }
        else if(x[i] > xmax)
        {
          x[i] = xmax;
          y[i] = ((y2 - y1)/(x2 - x1)) * (xmax - x1) + y1;
        }
        if(y[i] < ymin)
        {
          y[i] = ymin;
          x[i] = ((x2 - x1)/(y2 - y1))*(ymin - y1) + x1;
        }
        else if(y[i] > ymax)
        {
          y[i] = ymax;
          x[i] = ((x2 - x1)/(y2 - y1)) * (ymax - y1) + x1;
        }
        i++;
      }
      while(i <= 1);
      if(!(x[0] < xmin && x[1] < xmin) && !(x[0] > xmax && x[1] > xmax))
        draw_line(x[0], y[0], x[1], y[1]);
    }

5. Evaluation of All Line-Clipping Algorithms against a Rectangular Window

For the evaluation of the line clipping algorithms, C++ programming language with OpenGL was used. The procedure of the evaluation was the following: Each algorithm created a large number of arbitrary lines in a two-dimensional space. This space was determined by the points (−960, 720) and (960, −720). The clipping window was at the center of the screen and its size was defined by the points (−100, 75) and (100, −75); that is 200 pixels width and 150 pixels height. The lines were randomly generated anywhere in the two-dimensional space and each algorithm drew only the visible part of the lines inside the clipping window (see Figure 25).
The time that each algorithm needed to clip and draw the clipped line segments was recorded in every execution. The whole process was repeated 10 times and the average time was calculated at the end. The hardware as well as the software specifications of the evaluation process were: (a) Intel Core i7-9750H @ 2.60 GHz CPU, (b) RAM 16 GB, (c) NVIDIA GeForce RTX 2070/8 GB GPU, (d) Windows 10 Pro 64 bit operating system, (e) C++ with OpenGL/Freeglut running under the Code::Blocks environment.
Each algorithm created and clipped 10,000,000 lines in every execution. The results are shown in Table 2 and in Figure 26.
By studying the graph with the average times, we conclude that the MD algorithm is the fastest of all. Using the formula:
M D o t h e r M D · 100
we can see how much faster in percent the MD algorithm is compared to the others. The next table shows these comparisons (see Table 3).
As already mentioned, each algorithm has advantages and disadvantages. The MD algorithm when compared with all other algorithms is not only the fastest but also the simplest. The CS algorithm has a decent performance although the oldest of all. The CB algorithm has one of the worst performances and uses advanced mathematical concepts but it can be applied to any convex polygon clipping area. Moreover, it can be easily extended to three-dimensional clipping. LB looks like CB and also uses advanced mathematical concepts but performs better. It can also be applied to three-dimensional clipping but not against a convex polygon. MS has the worst performance among all clipping algorithms due to continuous divisions. It is not easily applicable but its performance may increase if it is used with hardware clipping. The NLN algorithm has a good performance but its code is very long since it uses a large number of sub-cases and subroutines for the geometric transformations and clipping. SKA05 is a little bit complex and relatively slow due to the double classification of each vertex. SCE2 has a bad performance but it is designed to be better for clipping lines against convex polygons with more than four edges. Finally, the KWC algorithm uses a similar approach to the CS and is very fast but it uses many conditions when handling horizontal and vertical lines which makes the algorithm more complicated and slower than the MD.

6. Line Clipping vs. Polygon Clipping

The term “line clipping against a polygon” is often confused with the term “polygon clipping”. Although clipping is the main concept in both cases, these two terms describe a different behavior for each clipping procedure. Line clipping against a polygon means that one or more lines are going to be clipped one by one and the result will be just clipped lines [29]. For example, if we want to clip three consecutive lines that form a triangle against a convex polygon, the result would be only the clipped lines (see Figure 27).
On the other hand, polygon clipping behaves slightly differently. Clipping is applied between polygons and the result is a new polygon. So, if we want to clip a triangle against a convex polygon, the result would be a new convex polygon (see Figure 28).
There are many polygon clipping algorithms such as Weiler–Atherton [30], Sutherland–Hodgman [31], Greiner–Hormann [32], Vatti [33]. Unfortunately, these algorithms cannot work as a “line clipping against a polygon” algorithm unless they are heavily modified.
From the algorithms described before, Cyrus–Beck, Skala 2005 and S-Clip E2 can be easily modified to clip lines against a convex polygon clipping area instead of a rectangle window.

7. Matthes–Drakopoulos Line Clipping against a Convex Polygon

A new computation method for two-dimensional line clipping against a convex polygon clipping area is introduced. All calculations are based on a virtual cross product of vectors in the two-dimensional space. The algorithm, if necessary, computes only the intersection points between the line and the edges of the clipping convex polygon. The evaluation of the algorithm shows that its performance is by far better than the other relative algorithms. There is no limit to the number of vertices of the convex polygon area.

7.1. Mathematical Background: The Cross Product

We know that a vector can be defined by two points and has magnitude (or length) and direction; see Figure 29.
Two vectors a and b in the three-dimensional space can be multiplied using the cross product. The cross product of the two vectors, which is symbolized as a × b , is another vector that is at right angles to both of them (Figure 30).
The magnitude (length) of the cross product equals the area of a parallelogram with vectors a and b used as sides of the parallelogram; see Figure 31.
The cross product has the following characteristics:
  • Has zero length, when the vectors a and b are in the same or the opposite direction.
  • It reaches the maximum length when the vectors a and b are at right angles.
  • The direction changes depending on the angle of vectors a and b ; see Figure 32.
The cross product does not really exist in the two-dimensional space as the operation is not defined there. However, it is handy to assume that the cross product of two vectors in the two-dimensional space exists by assuming that these vectors are three-dimensional with their Z-coordinate set to zero. The result is a scalar (vector with only a Z-component) and it can be considered as a point perpendicular to the X-Y plane. The sign of this value represents the direction of the cross product vector in the three-dimensional space and, as a result, we can determine the orientation between the two two-dimensional vectors (see Figure 33). From now on, this virtual cross product of two-dimensional vectors will be simply referred to as “2D cross product”.
Having said that, we can easily understand if a point P ( x p , y p ) is to the left, to the right right or on the line segment E defined by the points A ( x a , y a ) and B ( x b , y b ) (see Figure 34 and Figure 35).
The trick is to see all these points as two vectors (vector A P and vector A B ) with a common origin and then check the sign of their 2D cross product. A positive or negative value means that point P would be right or left to the line segment E, respectively, and a zero value means that the point P would be on it.
Let us analyze it a little bit further. Based on Figure 35, the cross product of vector A B with vector A P is:
A B × A P = ( x b x a ) ( y b y a ) ( x p x a ) ( y p y a )
A B × A P = ( x b x a ) · ( y p y a ) ( y b y a ) · ( x p x a )
By using the right-hand rule, if the value of the cross product is positive then the point P is to the left of the vector A B and left to the line segment E (direction matters). Likewise, if the value is negative then point P is to the right. Of course, zero means that it is on the line.Having this in mind, we can create a function in pseudo-code (C++ based) that accepts three points, one arbitrary and two of the line, that returns the 2D cross product.
//  INPUT: arbitary point P, line points A & B
// OUTPUT: cross product (clockwise order)
//         > 0 : left side
//         < 0 : right side
//         = 0 : on the line
float cross_product(point P, point A, point B)
{
               return (B.x - A.x) * (P.y - A.y) - (B.y - A.y) * (P.x - A.x);
}

7.2. Further Analysis of the Cross Product

The cross product may also be used for determining the intersection of two line segments. Let us assume that two points A ( x a , y a ) and B ( x b , y b ) define the line segment A B and two points C ( x c , y c ) and D ( x d , y d ) define the line segment C D on the two-dimensional space (see Figure 36).
The intersection of these two lines is a point I ( x , y ) with the following characteristics:
  • The 2D cross product of point I with the line segment A B is zero.
  • The 2D cross product of point I with the line segment C D is zero.
This is depicted better on Figure 37.
For the vectors A I and A B of Figure 37, the cross product is zero:
A I × A B = 0
( x x a ) ( y y a ) ( x b x a ) ( y b y a ) = 0
( x x a ) · ( y b y a ) ( x b x a ) · ( y y a ) = 0
x · ( y b y a ) x a · ( y b y a ) y · ( x b x a ) + y a · ( x b x a ) = 0
( y b y a ) · x ( x b x a ) · y = x a · ( y b y a ) y a · ( x b x a )
For simplicity purposes, let us symbolize the next differences as
d x 1 = ( x b x a ) and d y 1 = ( y b y a ) .
Combining (5) and (6) we obtain:
d y 1 · x d x 1 · y = x a · d y 1 y a · d x 1 .
For the vectors C I and C D of Figure 37, the equation of the zero cross product would give:
x · ( y d y c ) y · ( x d x c ) = x c · ( y d y c ) y c · ( x d x c ) .
For reasons of simplicity, if we symbolize the next differences as
d x 2 = ( x d x c ) and d y 2 = ( y d y c )
we obtain
d y 2 · x d x 2 · y = x c · d y 2 y c · d x 2
Equations (7) and (10) have two unknowns, so we can use their determinants for solving the system:
D = d y 1 d x 1 d y 2 d x 2 = d y 2 · d x 1 d y 1 · d x 2
D X = ( x a · d y 1 y a · d x 1 ) d x 1 ( x c · d y 2 y c · d x 2 ) d x 2 = ( x c · d y 2 y c · d x 2 ) · d x 1 ( x a · d y 1 y a · d x 1 ) · d x 2
D Y = d y 1 ( x a · d y 1 y a · d x 1 ) d y 2 ( x c · d y 2 y c · d x 2 ) = ( x c · d y 2 y c · d x 2 ) · d y 1 ( x a · d y 1 y a · d x 1 ) · d y 2
Solving for x and y:
x = D X D = ( x c · d y 2 y c · d x 2 ) · d x 1 ( x a · d y 1 y a · d x 1 ) · d x 2 d y 2 · d x 1 d y 1 · d x 2
y = D Y D = ( x c · d y 2 y c · d x 2 ) · d y 1 ( x a · d y 1 y a · d x 1 ) · d y 2 d y 2 · d x 1 d y 1 · d x 2 .
We can create a function in pseudo-code (C++ based) that accepts two pairs of points, where each pair represents a line segment, and returns the intersection point of these line segments. Of course, we also take advantage of the similarities between the Equations (11) and (12).
point intersection(point A, point B, point C, point D)
{
        // calculate the intersection point between lines AB and CD
        point d1 = {B.x - A.x, B.y - A.y};
        point d2 = {D.x - C.x, D.y - C.y};
        float n1 = C.x * d2.y - C.y * d2.x;
        float n2 = A.x * d1.y - A.y * d1.x;
        float n3 = 1/(d2.y * d1.x - d1.y * d2.x);
        float x = (n1 * d1.x - n2 * d2.x) * n3;
        float y = (n1 * d1.y - n2 * d2.y) * n3;
        return {x, y};
}

7.3. Description of the Algorithm

The clipping polygon has N vertices which are given in clockwise order. The first point of the polygon is P 1 ( x 1 , y 1 ) and the last point is P N ( x N , y N ) . There are also N edges with names from E 1 to E N . The line segment is defined by the points A ( x a , y a ) and B ( x b , y b ) . Clockwise order means that as we go through the edges from E 1 to E N , if a point is left of an edge then the 2D cross product is greater than zero, if a point is right of an edge then the 2D cross product is less than zero and if a point is on the edge then the 2D cross product is just zero (see Figure 38 and Figure 39).

7.4. Analysis

In order to clip the line, we have to go through each edge of the polygon in clockwise order and find where the points A and B reside compared to each edge. By residing, we mean that we have to determine, if the points A and B are to the left, to the right or on the edge (see Figure 39).
If both points A and B are to the left side of an edge then we reject the line as it is completely outside of the polygon, we draw nothing and the algorithm stops (see Figure 40).
If point A is left of the edge and point B is right of the edge or on the edge, we calculate the intersection point between the edge and the line segment A B . Then, we replace point A with the intersection point (see Figure 41).
Similarly, if point B is left of the edge and point A is right of the edge or on the edge, we calculate the intersection point between the edge and the line segment A B and we replace point B with the intersection point.
If points A and B are:
  • Simultaneously right to the edge.
  • One of them is on the edge and the other is right of the edge.
Then, we proceed to the next edge and repeat the same process or we stop if all of the N edges have been checked.
At the end, we draw a line segment from clipped point A to clipped point B (see Figure 42).

7.5. The Steps of the Algorithm

  • Check against an edge of the polygon which is defined by the vertices P i ( x i , y i ) and P i + 1 ( x i + 1 , y i + 1 ) where the points A ( x a , y a ) and B ( x b , y b ) of the line reside. Each point may reside to the left of the edge, to the right of the edge or on the edge.
  • If both of the points are to the left of the edge then stop the algorithm and draw nothing. The line is completely outside the convex polygon.
  • If only point A is to the left of the edge then calculate the intersection point between the edge and the line. Replace the coordinates of point A with those coordinates of the intersection point and repeat from Step 1 with the next edge.
  • If only point B is to the left of the edge then calculate the intersection point between the edge and the line. Replace the coordinates of point B with those coordinates of the intersection point and repeat from Step 1 with the next edge.
  • If both points A and B are to the right of the edge or one of them is on the edge and the other is right of the edge then repeat from Step 1 with the next edge or stop if you have checked all N edges.
  • Draw the clipped line from point A to point B.

7.6. Pseudo-Code (C++ Based)

// INPUT : point A, point B, N, point polygon[N + 1] (last vertex is equal to first)
// OUTPUT : clipped line segment from point A to point B
float sideA, sideB;
bool draw = true;
for(int i = 0; i < N; i++)
{
         // sideX > 0 --> LEFT
         // sideX < 0 --> RIGHT
         // sideX = 0 --> ON THE EDGE
         sideA = cross_product(A, polygon[i], polygon[i + 1]);
         sideB = cross_product(B, polygon[i], polygon[i + 1]);
         if(sideA > 0 && sideB > 0)
         {
                // line is completely outside
                draw = false;
                break;
         }
         if(sideA > 0 && sideB <= 0)
         // point A is outside, point B is inside polygon or on the edge
         A = intersection(A, B, polygon[i], polygon[i + 1]);
         else if(sideB > 0 && sideA <= 0)
         // point B is outside, point A is inside polygon or on the edge
         B = intersection(A, B, polygon[i], polygon[i + 1]);
}
if(draw)
         draw_line(A, B);

8. Evaluation of All Line-Clipping against a Convex Polygon Algorithms

In order to determine the efficiency of all line clipping against convex polygon algorithms, we benchmarked them in the following way: Each one was creating 10,000,000 arbitrary lines in a two-dimensional space. The limits of this space were the points ( 960 , 720 ) and ( 960 , 720 ) . The convex polygon (clipping area) was drawn somewhere inside our screen which had a resolution of 480 pixels width and 360 pixels height and with the center of the screen being the start of the axes X and Y (see Figure 43). The lines were randomly generated anywhere in the two-dimensional space and each algorithm had to clip and draw only the visible part of the lines inside the convex polygon. The total time that each algorithm needed to clip and draw these lines was recorded in every execution. The whole process was repeated 10 times and at the end, the average time was calculated; see Table 4, Figure 44 and Figure 45.
This process was repeated with many convex polygons with different vertices/edges. The hardware, as well as the software specifications for the evaluation, was: (a) Intel Core i7-9750H @2.60 Gz CPU, (b) RAM 16 GB, (c) NVIDIA GeForce RTX 2070/8 GB GPU, (d) Windows 10 Pro 64-bit operating system, (e) C++ with OpenGL/Freeglut under the Code::Blocks environment.
By using the formula
M D o t h e r M D · 100
we can evaluate the speed of the MD algorithm in percent compared to the others. The next table shows this evaluation of speed; see Table 5.
So, comparing all the algorithms together we can conclude that the slowest of all is Cyrus–Beck. Skala 2005 is faster than Cyrus–Beck but not faster than the other two: S-clip E2 and MD. S-clip E2 performs very well but the performance of MD is high and steady in all cases.

9. Summary

The primary use of clipping in computer graphics is to remove objects, lines, or line segments that are outside the viewing pane and it is crucial. All objects that are not inside the field of view of the viewer have to be removed before generating the scene. For this reason, clipping is considered an important process. Clipping can be applied to objects like points, lines, polygons, curves, etc. Clipping a single point is rather easy, the clipping algorithm just accepts or rejects the point if its location is inside or outside the clipping window. However, when clipping a line or other objects, things are more complicated and more calculations have to be performed.
Many line-clipping algorithms in two dimensions have been developed over recent years. Each one has advantages and disadvantages. The computer programmer has to choose the suitable one according to his needs among a number of characteristics such as efficiency in calculations, the type of clipping area (rectangular, polygon or other), the type of mathematical approach (equations or vectors), whether the algorithm can be easily extended to other dimensions such as three dimensions and so on. This contribution briefly summarized common and uncommon line-clipping methods in 2D whereas it includes some of the latest research made by the authors.

Author Contributions

Conceptualization, V.D.; methodology, D.M. and V.D.; software, D.M.; formal analysis, D.M.; supervision, V.D.; visualization, D.M.; data curation, D.M.; writing–original draft preparation, D.M.; writing–review and editing, V.D. All authors have read and agreed to the published version of the manuscript.

Funding

This research received no external funding.

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

Not applicable.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Hearn, D.; Baker, M.P. Computer Graphics C Version, 2nd ed.; Prentice Hall: Upper Saddle River, NJ, USA, 1997. [Google Scholar]
  2. Comninos, P. Mathematical and Computer Programming Techniques for Computer Graphics; Springer: London, UK, 2006. [Google Scholar] [CrossRef]
  3. Cyrus, M.; Beck, J. Generalized two- and three-dimensional clipping. Comput. Graph. 1978, 3, 23–28. [Google Scholar] [CrossRef]
  4. Liang, Y.D.; Barsky, B.A. A new concept and method for line clipping. ACM Trans. Graph. (TOG) 1984, 3, 1–22. [Google Scholar] [CrossRef]
  5. Nicholl, T.M.; Lee, D.; Nicholl, R.A. An efficient new algorithm for 2-D line clipping: Its development and analysis. Comput. Graph. 1987, 21, 253–262. [Google Scholar] [CrossRef]
  6. Sobkow, M.S.; Pospisil, P.; Yang, Y. A Fast Two-Dimensional Line Clipping Algorithm Via Line Encoding. Comput. Graph. 1987, 11, 459–467. [Google Scholar] [CrossRef]
  7. Skala, V. An efficient algorithm for line clipping by convex polygon. Comput. Graph. 1993, 17, 417–421. [Google Scholar] [CrossRef]
  8. Skala, V. O(lgN) Line clipping algorithm in E2. Comput. Graph. 1994, 18, 517–524. [Google Scholar] [CrossRef] [Green Version]
  9. Skala, V. A new approach to line and line segment clipping in homogeneous coordinates. Vis. Comput. 2005, 21, 905–914. [Google Scholar] [CrossRef]
  10. Skala, V. S-clip E2: A new concept of clipping algorithms. SIGGRAPH Asia 2012, 2012, 39. [Google Scholar] [CrossRef]
  11. Ray, B.K. A Line Segment Clipping Algorithm in 2D. Int. J. Comput. Graph. 2012, 3, 51–76. [Google Scholar]
  12. Andreev, R.; Sofianska, E. New algorithm for two-dimensional line clipping. Comput. Graph. 1991, 15, 519–526. [Google Scholar] [CrossRef]
  13. Day, J.D. An algorithm for clipping lines in object and image space. Comput. Graph. 1992, 16, 421–426. [Google Scholar] [CrossRef]
  14. Rappoport, A. An efficient algorithm for line and polygon clipping. Vis. Comput. 1991, 7, 19–28. [Google Scholar] [CrossRef]
  15. Dimri, S.C. A simple and efficient algorithm for line and polygon clipping in 2-D computer graphics. Int. J. Comput. Appl. 2015, 127, 31–34. [Google Scholar]
  16. Huang, W. A Novel Algorithm for Line Clipping. In Proceedings of the 2009 International Conference on Computational Intelligence and Software Engineering, Wuhan, China, 11–13 December 2009; pp. 1–5. [Google Scholar] [CrossRef]
  17. Huang, W. The Line Clipping Algorithm Basing on Affine Transformation. Intell. Inf. Manag. 2010, 2, 2029. [Google Scholar] [CrossRef] [Green Version]
  18. Elliriki, M.; Reddy, C.; Anand, K. An efficient line clipping algorithm in 2D space. Int. Arab J. Inf. Technol. 2019, 16, 798–807. [Google Scholar]
  19. Pandey, A.; Jain, S. Comparison of various line clipping algorithms for Improvement. Int. J. Mod. Eng. Res. 2013, 3, 69–74. [Google Scholar]
  20. Shilpa; Arora, P. Clipping in Computer Graphics-A review. In International Journal Of Advance Research And Innovative Ideas In Education; IJARIIE: Gujarat, India, 2016; Volume 2, pp. 1725–1730. [Google Scholar]
  21. Nisha. Comparison of various line clipping algorithms: Review. Int. J. Adv. Res. Comput. Sci. Softw. Eng. 2017, 7, 68–71. [Google Scholar] [CrossRef]
  22. Cohen, D. Incremental Methods for Computer Graphics. Ph.D. Thesis, Harvard University, Cambridge, MA, USA, 1969. [Google Scholar]
  23. Sproull, R.; Sutherland, I. A clipping divider. In Proceedings of the Fall Joint Computer Conference, Part I, AFIPS ’68 (Fall, Part I), New York, NY, USA, 9–11 December 1968; Association for Computing Machinery: New York, NY, USA, 1968; pp. 765–775. [Google Scholar] [CrossRef]
  24. Sutherland, I. Display Windowing by Clipping. U.S. Patent 3 639 736, 1 February 1972. [Google Scholar]
  25. Hearn, D.; Baker, M.P.; Carithers, W.R. Computer Graphics with Open GL, 4th ed.; Pearson Education Limited: Edinburgh Gate, UK; Harlow, UK; Essex, UK, 2014. [Google Scholar]
  26. Kodituwakku, S.R.; Wijeweera, K.R.; Chamikara, M.A.P. An efficient algorithm for line clipping in computer graphics programming. Ceylon J. Sci. (Phys. Sci.) 2013, 1, 1–7. [Google Scholar]
  27. Matthes, D.; Drakopoulos, V. A simple and fast line-clipping method as a Scratch extension for computer graphics education. Comput. Sci. Inf. Technol. 2019, 7, 40–47. [Google Scholar] [CrossRef] [Green Version]
  28. Matthes, D.; Drakopoulos, V. Another simple but faster method for 2D line clipping. Int. J. Comput. Graph. Animat. 2019, 9, 1–15. [Google Scholar] [CrossRef]
  29. Rogers, D.F. Procedural Elements for Computer Graphics, 2nd ed.; McGraw-Hill, Inc.: New York, NY, USA, 1997. [Google Scholar] [CrossRef]
  30. Weiler, K.; Atherton, P. Hidden Surface Removal Using Polygon Area Sorting. In Proceedings of the 4th Annual Conference on Computer Graphics and Interactive Techniques, SIGGRAPH ’77, San Jose, CA, USA, 20–22 July 1977; Association for Computing Machinery: New York, NY, USA, 1977; pp. 214–222. [Google Scholar] [CrossRef]
  31. Sutherland, I.; Hodgman, G. Reentrant Polygon Clipping. Commun. ACM 1974, 17, 32–42. [Google Scholar] [CrossRef]
  32. Greiner, G.; Hormann, K. Efficient clipping of arbitrary polygons. ACM Trans. Graph. 1998, 17, 71–83. [Google Scholar] [CrossRef]
  33. Vatti, B.R. A generic solution to polygon clipping. Commun. ACM 1992, 35, 56–63. [Google Scholar] [CrossRef]
Figure 1. Clipping window before (left) and after (right) line clipping.
Figure 1. Clipping window before (left) and after (right) line clipping.
Jimaging 08 00286 g001
Figure 2. The codes for the nine regions of the Cohen-Sutherland algorithm in the two-dimensional space.
Figure 2. The codes for the nine regions of the Cohen-Sutherland algorithm in the two-dimensional space.
Jimaging 08 00286 g002
Figure 3. Cohen–Sutherland endpoint region code.
Figure 3. Cohen–Sutherland endpoint region code.
Jimaging 08 00286 g003
Figure 4. Typical clipping boundaries.
Figure 4. Typical clipping boundaries.
Jimaging 08 00286 g004
Figure 5. Inward normals of a rectangular clipping window.
Figure 5. Inward normals of a rectangular clipping window.
Jimaging 08 00286 g005
Figure 6. Classifying intersection points either as Potentially Entering (PE) or Potentially Leaving (PL) and calculating their t parameter, respectively.
Figure 6. Classifying intersection points either as Potentially Entering (PE) or Potentially Leaving (PL) and calculating their t parameter, respectively.
Jimaging 08 00286 g006
Figure 7. Comparing each inward normal with vector P 0 P 1 .
Figure 7. Comparing each inward normal with vector P 0 P 1 .
Jimaging 08 00286 g007
Figure 8. Defining the line for clipping with the Liang–Barsky algorithm.
Figure 8. Defining the line for clipping with the Liang–Barsky algorithm.
Jimaging 08 00286 g008
Figure 9. NLN divides screen space into nine regions, like CS.
Figure 9. NLN divides screen space into nine regions, like CS.
Jimaging 08 00286 g009
Figure 10. NLN uses only three out of nine regions namely window, edge and corner.
Figure 10. NLN uses only three out of nine regions namely window, edge and corner.
Jimaging 08 00286 g010
Figure 11. Applying 270 degrees clockwise rotation for moving the first line endpoint into the edge region.
Figure 11. Applying 270 degrees clockwise rotation for moving the first line endpoint into the edge region.
Jimaging 08 00286 g011
Figure 12. The four regions when P 0 is inside the clipping window and P 1 is outside.
Figure 12. The four regions when P 0 is inside the clipping window and P 1 is outside.
Jimaging 08 00286 g012
Figure 13. The four clipping regions when P 0 is on the edge region.
Figure 13. The four clipping regions when P 0 is on the edge region.
Jimaging 08 00286 g013
Figure 14. The two possible sets of clipping regions used in the NLN algorithm when P 0 is (a) above and (b) to left of the clipping window.
Figure 14. The two possible sets of clipping regions used in the NLN algorithm when P 0 is (a) above and (b) to left of the clipping window.
Jimaging 08 00286 g014
Figure 15. (a) m 1 , m 2 , m 3 , m 4 are the slopes of the line segments formed between P 0 and L, T, R, B, boundaries respectively. (b) m is the slope of the line segment P 0 P 1 .
Figure 15. (a) m 1 , m 2 , m 3 , m 4 are the slopes of the line segments formed between P 0 and L, T, R, B, boundaries respectively. (b) m is the slope of the line segment P 0 P 1 .
Jimaging 08 00286 g015
Figure 16. Outcodes for the Midpoint Subdivision algorithm.
Figure 16. Outcodes for the Midpoint Subdivision algorithm.
Jimaging 08 00286 g016
Figure 17. Outcode bits for the Midpoint Subdivision algorithm.
Figure 17. Outcode bits for the Midpoint Subdivision algorithm.
Jimaging 08 00286 g017
Figure 18. Classification of each vertex.
Figure 18. Classification of each vertex.
Jimaging 08 00286 g018
Figure 19. Screen is divided into 9 regions.
Figure 19. Screen is divided into 9 regions.
Jimaging 08 00286 g019
Figure 20. The rectangular clipping window of the KWC algorithm.
Figure 20. The rectangular clipping window of the KWC algorithm.
Jimaging 08 00286 g020
Figure 21. Line is intersecting the boundaries; The new line endpoints A and B have been calculated.
Figure 21. Line is intersecting the boundaries; The new line endpoints A and B have been calculated.
Jimaging 08 00286 g021
Figure 22. Line clipping region.
Figure 22. Line clipping region.
Jimaging 08 00286 g022
Figure 23. Lines A , B , C and D are rejected according to the first step of the algorithm.
Figure 23. Lines A , B , C and D are rejected according to the first step of the algorithm.
Jimaging 08 00286 g023
Figure 24. Selecting the points of the line that are inside the clipping area.
Figure 24. Selecting the points of the line that are inside the clipping area.
Jimaging 08 00286 g024
Figure 25. Defining the clipping window as well as the two-dimensional space for generating arbitrary lines.
Figure 25. Defining the clipping window as well as the two-dimensional space for generating arbitrary lines.
Jimaging 08 00286 g025
Figure 26. Average time of each algorithm for clipping 10 million lines (lower value → better).
Figure 26. Average time of each algorithm for clipping 10 million lines (lower value → better).
Jimaging 08 00286 g026
Figure 27. Clipping three consecutive lines that form a triangle against a convex polygon. The result is clipped lines.
Figure 27. Clipping three consecutive lines that form a triangle against a convex polygon. The result is clipped lines.
Jimaging 08 00286 g027
Figure 28. Clipping a polygon (triangle) against a polygon. The result is a new polygon.
Figure 28. Clipping a polygon (triangle) against a polygon. The result is a new polygon.
Jimaging 08 00286 g028
Figure 29. Magnitude and direction of a vector.
Figure 29. Magnitude and direction of a vector.
Jimaging 08 00286 g029
Figure 30. The cross product of 2 vectors is a third vector in the 3D space.
Figure 30. The cross product of 2 vectors is a third vector in the 3D space.
Jimaging 08 00286 g030
Figure 31. The cross product equals the area of a parallelogram with vectors a and b used as sides of the parallelogram.
Figure 31. The cross product equals the area of a parallelogram with vectors a and b used as sides of the parallelogram.
Jimaging 08 00286 g031
Figure 32. The direction changes depending on the angle of vectors a and b .
Figure 32. The direction changes depending on the angle of vectors a and b .
Jimaging 08 00286 g032
Figure 33. From the sign of the 2D cross product we can determine, if vector b is to the left, to the right or on vector a .
Figure 33. From the sign of the 2D cross product we can determine, if vector b is to the left, to the right or on vector a .
Jimaging 08 00286 g033
Figure 34. Checking if point P is left, right or on the line segment E.
Figure 34. Checking if point P is left, right or on the line segment E.
Jimaging 08 00286 g034
Figure 35. Using the 2D cross product to determine the position of the point P comparing to the line segment E.
Figure 35. Using the 2D cross product to determine the position of the point P comparing to the line segment E.
Jimaging 08 00286 g035
Figure 36. Two lines on a two-dimensional space.
Figure 36. Two lines on a two-dimensional space.
Jimaging 08 00286 g036
Figure 37. Cross product between the vectors AI and AB as well as between CI and CD is zero.
Figure 37. Cross product between the vectors AI and AB as well as between CI and CD is zero.
Jimaging 08 00286 g037
Figure 38. A convex polygon with N points and N edges and a line in the 2D space.
Figure 38. A convex polygon with N points and N edges and a line in the 2D space.
Jimaging 08 00286 g038
Figure 39. Checking if points A and B are left, right or on the edge E 1 of the polygon.
Figure 39. Checking if points A and B are left, right or on the edge E 1 of the polygon.
Jimaging 08 00286 g039
Figure 40. If points A and B are on the left side of an edge then the line is completely outside.
Figure 40. If points A and B are on the left side of an edge then the line is completely outside.
Jimaging 08 00286 g040
Figure 41. The intersection point replaces the point that it is outside the polygon.
Figure 41. The intersection point replaces the point that it is outside the polygon.
Jimaging 08 00286 g041
Figure 42. At the end, we draw a line segment from clipped point A to clipped point B.
Figure 42. At the end, we draw a line segment from clipped point A to clipped point B.
Jimaging 08 00286 g042
Figure 43. The two-dimensional space for generating arbitrary lines.
Figure 43. The two-dimensional space for generating arbitrary lines.
Jimaging 08 00286 g043
Figure 44. Average time of each algorithm when clipping 10 million lines against convex polygons with different number of edges (lower is better).
Figure 44. Average time of each algorithm when clipping 10 million lines against convex polygons with different number of edges (lower is better).
Jimaging 08 00286 g044
Figure 45. Speed graph of each algorithm when clipping 10 million lines against convex polygons with different number of edges (lower is better).
Figure 45. Speed graph of each algorithm when clipping 10 million lines against convex polygons with different number of edges (lower is better).
Jimaging 08 00286 g045
Table 1. Original values of the TAB-MASK table.
Table 1. Original values of the TAB-MASK table.
c c 3 c 2 c 1 c 0 TAB1TAB2MASK
00000NoneNoneNone
10001030100
20010010100
30011130010
40100120010
50101N/AN/AN/A
60110020100
70111231000
81000231000
91001020100
101010N/AN/AN/A
111011120010
121100130010
131101010100
141110030100
151111NoneNoneNone
Table 2. Execution times of each algorithm when clipping 10,000,000 lines.
Table 2. Execution times of each algorithm when clipping 10,000,000 lines.
Exec.CSCBLBMSNLNSKA05SCE2KWCMD
(sec)(sec)(sec)(sec)(sec)(sec)(sec)(sec)(sec)
11.8832.0961.8402.1761.8531.9852.1001.8681.758
21.9052.0751.8702.2061.9891.9592.1731.7741.733
31.9142.0691.8712.1771.8731.9862.1601.8701.765
41.9342.1141.9032.1441.8471.9842.1621.8031.764
51.8572.1361.8512.1451.8921.9652.1001.8591.776
61.8172.0851.8692.1741.8381.9942.1321.8251.814
71.9182.0821.8472.1901.8691.9872.1701.7681.787
81.8362.0931.8322.2111.8142.0052.1491.8101.769
91.8202.1361.9212.1751.8051.9712.1441.8281.757
101.9442.0821.8592.2101.8161.9412.1671.7431.806
Avg:1.8832.0971.8662.1811.8601.9782.1461.8151.773
Table 3. Percent that the MD algorithm is faster than the other algorithms.
Table 3. Percent that the MD algorithm is faster than the other algorithms.
The MD Algorithm Is % Faster Compared to
CSCBLBMSNLNSKA05SCE2KWC
6.20%18.27%5.27%23.01%4.89%11.55%21.03%2.36%
Table 4. Average execution time of each algorithm when clipping 10 million lines against convex polygons with different numbers of edges.
Table 4. Average execution time of each algorithm when clipping 10 million lines against convex polygons with different numbers of edges.
Number of EdgesCyrus–Beck (sec)Skala 2005 (sec)S-Clip E2 (sec)Matthes–Drakopoulos (sec)
52.4432.4432.4252.358
62.6572.6552.5642.501
72.7432.6822.6482.590
82.8602.8592.6862.632
92.9382.8262.8202.774
103.1393.1042.9492.884
Table 5. Percent that the MD algorithm is faster than the other algorithms.
Table 5. Percent that the MD algorithm is faster than the other algorithms.
EdgesMD Algorithm Is Faster Compared to
Cyrus-BeckSkala 2005S-Clip E2
53.58%3.61%2.85%
66.21%6.16%2.50%
75.92%3.54%2.25%
88.65%8.62%2.07%
95.90%1.87%1.65%
108.84%7.65%2.26%
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Matthes, D.; Drakopoulos, V. Line Clipping in 2D: Overview, Techniques and Algorithms. J. Imaging 2022, 8, 286. https://doi.org/10.3390/jimaging8100286

AMA Style

Matthes D, Drakopoulos V. Line Clipping in 2D: Overview, Techniques and Algorithms. Journal of Imaging. 2022; 8(10):286. https://doi.org/10.3390/jimaging8100286

Chicago/Turabian Style

Matthes, Dimitrios, and Vasileios Drakopoulos. 2022. "Line Clipping in 2D: Overview, Techniques and Algorithms" Journal of Imaging 8, no. 10: 286. https://doi.org/10.3390/jimaging8100286

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop