반응형
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- tcp네트워크
- php 홈디렉토리 변경방법
- TCP 네트워크 방식의 연결
- 컬렉션 프레임
- 소캣(Socket)
- 나지보 특성
- 스랄 특성
- 벨팡
- 안드로이드 Application Lifecycle
- 자바
- 나지보
- 히오스
- tcp
- Collection Framework
- 리눅스
- 안드로이드
- 어플
- 게임
- 변경된 정보
- 명령어
- game
- 비행기 모드
- End of Darkness
- 아이패드
- 에셋
- 아이폰
- 기업의 행포
- 집 정리
- unity
- 포트(Port)
Archives
- Today
- Total
Do Something IT
Vector3.Distance 와 sqrMagnitude 또는 magnitude 차이점 본문
반응형
Vector3.Distance와 magnitude는 같다
sqrMagnitude 는 위 두 값에 루트를 계산 하기 전의 값 즉 루트3 이면 = +-9의 절대값이다 이다
Vector3 tempDir = _endPos - _tranMy.position; float fDist = tempDir.sqrMagnitude; Debug.Log(tempDir.sqrMagnitude + " / " + tempDir.magnitude + " / " + Vector3.Distance(_endPos , _tranMy.position)); if (fDist < 10)의 값은 9.734453 / 3.120008 / 3.120008 로 값이 찍히게 된다.
반응형
'Unity3D' 카테고리의 다른 글
GUI - Scale GUIs According to Resolution (0) | 2017.09.13 |
---|---|
문자 중 숫자만 남기고 모두 제거 (0) | 2017.06.08 |
[unity]Rendertexture screenshot to NGUI UITexture (0) | 2017.01.02 |
Cant install visual studio community edition 2013 (0) | 2016.07.28 |
라이브2D (0) | 2016.02.04 |
Comments