• Articles

C Program to Draw a Circle using Midpoint Circle Drawing Algorithm

2 years ago

An algorithm that is used to find points required for plotting and converting a circle over display. Midpoint circle drawing algorithm snippet provided in this… Read More

Program To Perform Scaling on a Triangle in C

2 years ago

In this article, we'll be implementing a program to demonstrate 2D scaling of a triangle in computer graphics using C. Scaling can be defined as… Read More

  • Articles

C Program to Rotate a Line

2 years ago

Rotation can be defined as moving an object in a circular path at a given angle theta. If there is a positive angle, it would… Read More

  • Articles

Explain Cohen Sutherland Line Clipping Algorithm

2 years ago

Line clipping is a clipping concept in which lines that lies outside the clipping window is removed from the clip region. As a result, only… Read More

  • Articles

C Program for Clipping a line using Cohen Sutherland Algorithm

2 years ago

In this article, we'll be clipping a line in C using Cohen Sutherland algorithm. Clipping is a process of removing a portion of a line… Read More

  • Articles

C Program to Convert Feet, Yards, Meters, cm into Inches And Inches to cm, meters, feet, yards

2 years ago

The programs accept feet, yards, centimetres, and meters values as input and convert them into inches. And also from feet, yards, meters, cm to inches.… Read More

C Program to implement Window to Viewport Transformation

2 years ago

In this article, we'll be discussing meaning of window, viewport, window to viewport mapping and  implementing the concept in form of code. Window It is… Read More

  • Articles

C Program to Convert Hours into Minutes

2 years ago

The program accepts hours & minutes as an input and print the result to output screen. It uses basic formula to convert the given input… Read More

  • Articles

Difference Between Entry Controlled Loop and Exit Controlled Loop

2 years ago

In this article, we'll be discussing the meaning of loop and also see the difference between Entry Controlled Loop and Exit Controlled Loop with program… Read More

  • Articles

C program to draw ellipse using Midpoint Ellipse Algorithm

2 years ago

Midpoint ellipse algorithms uses symmetry property of an ellipse in order draw it. It plots points . Here is the program to draw an ellipse… Read More