Computer Graphics Programs Using C Programming
Computer Graphics Programs Using C Programming — articles and guides on Thiyagaraaj.com.
2D Scaling Program in C: Graphics Transformation Example
In computer graphics, scaling is a fundamental transformation that alters the size of an object while preserving its shape. It is commonly used to zoom in or ou
2D Rotation Program Using C Programming
A C program for 2D rotation in computer graphics — the rotation formula, complete source code, and sample output using graphics functions.
2D Translation Rectangle Program Using C Programming
A C program to translate a rectangle in computer graphics — how 2D translation moves an object across coordinates, with full source code and output.
2D Translation Triangle Program Using C Programming
Welcome to the "2D Translation Triangle Program Using C Programming" tutorial. In this tutorial, we will explore a C program that demonstrates the translation o
Bresenham's Line Drawing Algorithm
Bresenham's Line Drawing Algorithm — a fast, integer-only method to draw lines on a raster grid, with the step-by-step logic and a C program.
Bresenham's Circle Drawing Algorithm Using C Programming
Bresenham's Circle Drawing Algorithm is a simple and efficient method used to draw circles on a digital screen or a graphics window. It was developed by Jack E.
Text Animation Program Using C Programming
Text animation is a captivating technique used to add visual appeal to various applications and projects. It involves displaying text in a dynamic and moving ma
3D Translation Program Using C Programming
This blog post introduces a simple 3D Translation program using C programming language. The program allows users to create and translate a 3D rectangle in a gra
3D Scaling Program Using C Programming
Welcome to the 3D Scaling Program using C programming. This program demonstrates a basic implementation of 3D scaling, a fundamental concept in computer graphic
3D Rotation Program Using C Programming
In computer graphics, 3D transformations play a crucial role in manipulating objects in a three-dimensional space. One of the fundamental transformations is rot
DDA Line Drawing Algorithm Using C Programming
DDA Line Drawing Algorithm in C — how the Digital Differential Analyzer plots line points step by step, with complete source code and output.
Fundamental Graphics Functions
Graphics programming in C allows you to create visual elements and interactive designs using the fundamental graphics functions provided by the graphics.h libra
Line Clipping Program Using C Programming
Line clipping is an essential technique used in computer graphics to determine which portions of a line lie within a specified window or viewport. The Cohen-Sut
Midpoint Circle Algorithm Using C Programming
The "Midpoint Circle Algorithm" is a classic computer graphics algorithm used to draw circles on a pixel grid. It is an efficient and elegant way to generate th