Write a C Program to implement 3-D rotation in Graphics
Write a C Program to implement 3-D rotation in Graphics
C Program to implement 3-D rotation with respect to x-axis, y-axis and z-axis (wire frame model of a cube). Use appropriate data structures to manipulate the wire frame model.
#include #include #include #include #include #include #define ORG -50 double face1[5][2] = { { 250, 125 }, { 350, 125 }, { 350, 225 }, { 250, 225 }, { 250, 125 }…
View On WordPress













