InterviewSolution
Saved Bookmarks
| 1. |
In 2D-translation, a point (x, y) canmove to the new position (x’, y’) by using the equation(a) x’=x+dx and y’=y+dx(b) x’=x+dx and y’=y+dy(c) X’=x+dy and Y’=y+dx(d) X’=x-dx and y’=y-dyThis question was posed to me during an internship interview.Asked question is from 2D Translation topic in section 2D Transformation and Viewing of Computer Graphics |
|
Answer» Right answer is (b) x’=x+DX and y’=y+DY |
|