About 3,840,000 results
Open links in new tab
  1. 2D Scaling Program Using C Programming - THIYAGARAAJ.COM

    This blog post presents a 2D scaling program implemented in C programming language. The program takes user inputs for the coordinates of a triangle, performs the scaling transformation …

  2. 2D Transformation in Computer Graphics | Set 1 (Scaling of …

    Mar 22, 2023 · By this simple formula, we can achieve a variety of useful transformations, depending on what we put in the entries of the matrix. For our purposes, consider moving …

  3. Program To Perform Scaling On A Triangle In C - Programmerbay

    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 a process of changing or altering the …

  4. C Program for 2D Transformation (Translation, Rotation and Scaling)

    Oct 2, 2017 · Program /* This program is for the transformation of 2D shape (Triangle) for other shape edit only shape codes 1. Translation 2. Rotation 3. Scaling Here, x1,x2,x3,y1,y2,y3 …

  5. Write a C Program to perform 2D Transformations using Scaling

    Dec 2, 2016 · Here’s simple C Program to perform 2D Transformations using Scaling in C Programming Language. Below is the source code for C Program to perform 2D …

  6. C Program for Scaling 2D transformation - Scaling Polygons in Computer ...

    Scaling is one of the important 2d transformations in computer graphics. The program will tell you how to scale lines or polygons. This CG lab program in c language using the graphics library …

  7. Implementation Of 2D Transformations Computer Graphics

    To write a C program to implement 2D transformations. 1. Enter the choice for transformation. 2. Perform the translation, rotation, scaling, reflection and shearing of 2D object. 3. Get the …

  8. COMPUTER GRAPHICS- Implement 2D Transformation : Translation, Scaling ...

    Sep 28, 2020 · In this experiment we Implemented 2D Transformation such as Translation, Scaling, Rotation, Reflection and Shearing. Conclusion: It becomes easy to perform more than …

  9. C Program for 2D transformations such as translation, scaling, …

    Initialize the graphics mode. 3. Construct a 2D object (use Drawpoly ()) e.g. (x,y) 4. A) Translation. a. Get the translation value tx, ty. b. Move the 2d object with tx, ty (x’=x+tx,y’=y+ty) 5. B) …

  10. C Program to implement 2D Composite Transformation - Blogger

    Sep 23, 2020 · To write a C program to implement 2D composite transformations such as consecutive translation, consecutive rotation, pivot point rotation and consecutive scaling. …