-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathREADME
More file actions
38 lines (27 loc) · 640 Bytes
/
README
File metadata and controls
38 lines (27 loc) · 640 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
This repository contains implementations of various graphic algorithms in C++ using the winbgim graphics library.
To get winbgim go here - http://winbgim.codecutter.org/
Algorithms implemented -
1) Mid-point algorithm
a) Line
b) Circle
c) Ellipse
d) Hyperbola
e) Parabola
2) Bressenham's Algorithm
a) Line
b) Circle
c) Ellipse
d) Hyperbola
e) Parabola
3) Line Clipping Algorithms
a) Mid-point subdivision
b) Cohen Sutherland
c) Liang Barsky
d) Cyrus Beck
4) Polygon Clipping Algorithms
a) Sutherland Hodgeman
5) 2D Transformations
6) 3D Transformations
7) Seed Fill Algorithm
8) Bezier Curves
9) Hermite Curves