카테고리 없음

역삼각함수 및 그래프

zelkova 2021. 3. 22. 09:26

<목차로 돌아가기>

 

 

 

역삼각함수

 

 

sin그래프

 

 

SIN 그래프

 

acsin 그래프

 

cosin 그래프

 

COSIN 그래프
accos

 

 

actangent 그래프

 

Tangent 그래프

 

actan 그래프

 

void FixedUpdate(){

   Vector2 vel = GetComponent<Rigidbody2D>().velocity;

   Vector2 dir = vel.normalized;

   float degree = Mathf.Atan(dir.y/dir.x) * Mathf.Rad2Deg;

   transform.rotation = Quaternion.Euler (0, 0, degree);

}

mathf.actan2를 사용하는 이유 관련 참조글

actan를 사용하여 각도구하는 이론

 

 

 

참조 : sseong님 블로그

참조 : 수포자를 위한 게임수학 탄젠트

 

 

반응형