Received an A on this assignment. This implementation utilizes scissoring, which is a post processing sequence that ignores pixels to be rendered outside of the clipping window. In future implantations this process should be handled in the active edge table.
- Navigate into this repo after cloning it to your local development machine
- Type
make
- Run with
./main
- Add points to the screen by left-clicking anywhere in the GUI with your mouse. Add the final point by right clicking.
- Press
c
to turn the clipping window on and off. Click and drag with your left mouse button to specify a new clipping window.
- To draw polygons, the user should specify points using the left mouse button. Each point where the user presses down will give the next point (in order) on the polygon. The final point in the polygon will be specified by pressing the right mouse button. So, a triangle would be described by two left clicks and one right click. The user may define up to 10 polygons, each with at most 10 vertices (before clipping).
- The polygon should be scan-converted. Each polygon should be drawn in a different color. You should use an active edge table/list approach for this.
- To clip, the user should press the ‘C’ key. Once this key has been pressed, no more polygons can be entered.
- The user should specify the clipping region by clicking and dragging (with the left mouse button) a rectangle in the window. One corner of the rectangle is specified by where the button is pushed down, the opposite corner by where it is released. The clipping rectangle should be highlighted (i.e. the 4 edges of the rectangle drawn) as it is being dragged (all the polygons currently being displayed should still be shown).
- Once the rectangle has been set, the polygons should be clipped, and the clipped results displayed. You should not use scissoring, and will lose significant points if you do so.
- The user should be allowed to change the clip region as many times as desired. In each case, the original polygons entered should be used for clipping – not the already-clipped polygons.
- You may use a polygon clipping algorithm that leaves extraneous edges for concave polygons being clipped.
Example of various polygons created by the user
Example of the previous polygons clipped using the implementation of the scanline conversion algorithm
If you are working on an assignment for a University or High School course you must check with your professor and/or school's guidelines on plagiarism before copying any work found in this codebase. The author of this code is not to be held responsible for acts of cheating or misconduct. The author, much like the creator of a scholastic paper or article has decided to post this codebase for educational purposes. If you are a professor or course admin that is having an issue with cheating in your class, please feel free to contact the author.
Copyright (c) 2015 Robert Timm
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.