Computer graphics : 2D Translation

Translation คือการย้าย object จากจุดหนึ่งยังอีกจุดหนึ่ง หลักการพื้นฐานคือการเพิ่ม translation coordinate  (t1,t2)  ให้กับจุดตั้งต้น (x1,y1) นั้นคือ



( x 2 , y 2 ) = ( t x , t y ) + ( x 1 , y 1 )

[ x 2 y 2 ] = [ t x t y ] + [ x 1 y 1 ]
x 2 = x 1 + t x
y 2 = y 1 + t y

เรียก (tx,ty) ว่า translation vector หรือ shift vector

ความคิดเห็น