2. Clipping
Any procedure that identifies the portions of a picture that are either inside
or outside of a specified region is referred to as a clipping.
The region against which an object is to clipped is called a clip window.
Applications of clipping include extracting part of a defined scene for
viewing.
3. Types of clipping
Point clipping
Line clipping
Area clipping
Text clipping
4. Point clipping
Point clipping is a type of clipping in which any points is saved for viewing.
If we want to display a point p(x,y) then we must have to satisfy these two conditions.
Conditions :-
Wxmin <= x <= Wxmax
Wymin <= y <= Wymax
Where Wxmin, Wxmax, Wymin and Wymax are the window – coordinates.