Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
angeloyeo committed Jul 2, 2024
1 parent 81904c4 commit 5e433ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _posts/2024-06-28-Affine_Transformation.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ $$\begin{bmatrix}\cos(\pi/3) & -\sin(\pi/3) & 0 \\ \sin(\pi/3)& \cos(\pi/3) & 0
그림 8. 3차원 공간의 Rotation 변환
</p>

이 외에도 3차원 선형 변환이 동작하는
이 외에도 3차원 선형 변환이 동작하는 방식은 다양하므로 본 글의 맨 위에 있는 데모 애플릿을 이용해 3차원 선형 변환을 수행해보도록 하자.

# 아핀 변환 (Affine Transform)

Expand Down
2 changes: 1 addition & 1 deletion pics/2024-06-28-Affine_Transformation/affine_with_MATLAB.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
theta = 30; % 30도 회전
R = [cosd(theta) -sind(theta) 0; sind(theta) cosd(theta) 0; 0 0 1];
TR = T * R; % 이동 후 회전

n_steps = 100;
for i_step = 0:n_steps
temp_TR = (TR-eye(3)) * i_step/n_steps + eye(3);
tform_tr = affinetform2d(temp_TR);
Expand Down

0 comments on commit 5e433ed

Please sign in to comment.