Skip to content

Latest commit

 

History

History
29 lines (15 loc) · 762 Bytes

File metadata and controls

29 lines (15 loc) · 762 Bytes

Computer Graphics

CSE423: Computer Graphics Course

Tried some of the basic graphics drawing using Rust. Currently wrote only Rectange, DDA Line, Midpoint Line, Midpoint Circle.

Just Rectangle

Drawn using build in line drawing method. This was used to get idea about the location are orientation of the drawing.

Simple Rectangle

DDA Line

Line drawn using DDA algoritm.

DDA Line

Midpoint Line

Line Drawn using Mid Point Algorithm

Midpoint Line

Cirlce using Midpoint Algorithm.

A Circular pattern was drawn with the help of 8 way symmetry of circle and using Midpoint alorithm.

Midpoint Circle