3D_Geometric_Transformations_computer graphics.pptx

ksuraj98778 10 views 16 slides Aug 29, 2025
Slide 1
Slide 1 of 16
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11
Slide 12
12
Slide 13
13
Slide 14
14
Slide 15
15
Slide 16
16

About This Presentation

jlijl


Slide Content

3D Geometric Transformations An Overview of Concepts and Techniques

Introduction 3D geometric transformations are used to manipulate objects in 3D space.

Types of Transformations 1. Translation 2. Scaling 3. Rotation 4. Reflection 5. Shearing

Translation Shifts an object from one location to another in 3D space. Formula: P'(x,y,z) = P(x+tx, y+ty, z+tz)

Scaling Resizes an object by scaling factors along x, y, z axes. Formula: P'(x,y,z) = P(x*sx, y*sy, z*sz)

Rotation Rotates an object about x, y, or z axis. Example: Rotation about z-axis: [x' y' z'] = [x cosθ - y sinθ, x sinθ + y cosθ, z]

Reflection Flips an object about a plane (XY, YZ, or XZ). Example: Reflection in XY plane: (x, y, z) → (x, y, -z)

Shearing Distorts the shape of an object. Formula involves shifting one coordinate proportional to another.

Homogeneous Coordinates Used to represent transformations in matrix form. Adds an extra coordinate (w=1).

Matrix Representation Transformation matrices are used for compact representation. Example: Translation Matrix.

Composite Transformations Multiple transformations combined into one using matrix multiplication.

3D Transformation Pipeline Steps: Modeling → Viewing → Projection → Clipping → Rasterization

Applications Used in Computer Graphics, CAD, Animation, Virtual Reality, and Gaming.

Example Problem Rotate point (2,3,4) about z-axis by 90°. Solution: (x',y',z') = (-3,2,4)

Visualization 3D transformations are visualized using wireframes, solid models, or rendering techniques.

Conclusion 3D transformations are fundamental for graphics, simulations, and real-world modeling.
Tags