Skip to main content

Computer Graphics Programs Using C Programming

Computer Graphics Programs Using C Programming — articles and guides on Thiyagaraaj.com.

1

2D Scaling Program in C: Understanding Graphics Transformation...

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

Computer Graphics
2

2D Rotation Program Using C Programming

In computer graphics, transformations play a crucial role in manipulating objects on the screen. One such fundamental transformation is rotation, which involves

Computer Graphics
3

2D Translation Rectangle Program Using C Programming

In computer graphics, translating an object means moving it from one position to another within the coordinate space. In this blog post, we will explore a C pro

Computer Graphics
4

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

Computer Graphics
5

Bresenham's Line Drawing Algorithm

Bresenham's Line Drawing Algorithm is a simple and efficient method used to draw lines on a computer screen or any two-dimensional grid-based environment....

Computer Graphics
6

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.

Computer Graphics
7

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

Computer Graphics
8

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

Computer Graphics
9

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

Computer Graphics
10

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

Computer Graphics
11

DDA Line Drawing Algorithm Using C Programming

In computer graphics, line drawing algorithms are used to generate lines and curves on a computer screen. The DDA (Digital Differential Analyzer) algorithm...

Computer Graphics
12

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

Computer Graphics
13

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

Computer Graphics
14

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

Computer Graphics

Related Topics

Search tutorials