전체보기119 화면에서 마우스 클릭한 위치 Ray 정보, 디버그레이 1234if ( Input.GetMouseButton(0) ) { Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition); Debug.DrawRay(ray.origin, ray.direction*100f, Color.red);}Colored by Color Scriptercs 2015. 5. 12. 유니티3D, Mathf 공식 문서 : http://docs.unity3d.com/ScriptReference/Mathf.html Mathf.Abs() Mathf.Acos()Mathf.Asin()Mathf.Atan()Mathf.Atan2() Mathf.Max()Mathf.Min() Mathf.Log()Mathf.Log10() Mathf.Pow() Mathf.Cos()Mathf.Sin()Mathf.Tan() Mathf.Sqrt() 2015. 5. 12. C#, Math MSDN : https://msdn.microsoft.com/ko-kr/library/system.math(v=vs.110).aspx Math.Abs() 숫자의 절대 값을 반환.매개변수는, Double, Int16, Int32, Sbyte, Single 값이 들어 갈 수 있다. Math.Acos() 코사인을 적용했을 때 지정된 숫자가 나오는 각도를 반환 Math.Asin() 사인을 적용했을 때 지정된 숫자가 나오는 각도를 반환 Math.Atan() 탄젠트를 적용했을 때 지정된 숫자가 나오는 각도를 반환 Math.Atan2() 탄젠트를 적용했을 때 지정된 두 숫자의 몫이 나오는 각도를 반환 Math.Cos() 지정된 각도의 코사인을 반환Math.Sin() 지정된 각도의 사인을 반환Math.Tan() 지정된.. 2015. 5. 12. List<T> List 클래스인덱스로 액세스할 수 있는 강력한 형식의 개체 목록을 나타냅니다. 목록의 검색, 정렬 및 조작에 사용할 수 있는 메서드를 제공합니다.#배열에 다양한 기능을 붙여 주었다고 생각합니다. 리스트의 선언 및 생성1List StrList = new List();cs Capacity 리스트에 할당 된 공간을 확인하거나 설정 할 수 있습니다.1Console.WriteLine("Capacity: {0}", StrList.Capacity);cs Count 리스트에 있는 item의 수를 반환합니다.1Console.WriteLine("Count: {0}", StrList.Count);cs TrimExcess()- item의 수 만큼 Capacity를 조절합니다. Clear()- item을 모두 삭제합니다. 리.. 2015. 4. 19. MariaDB, 사용자 계정 만들기와 권한 설정 사용자 추가 https://mariadb.com/kb/en/mariadb/create-user/CREATE USER '사용자명'@'호스트' IDENTIFIED BY '비밀번호';사용자 제거 https://mariadb.com/kb/en/mariadb/drop-user/DROP USER bob;MariaDB starting with 10.1.3The same thing using the optional IF EXISTS clause:DROP USER IF EXISTS bob; 비밀번호 변경 https://mariadb.com/kb/en/mariadb/set-password/SET PASSWORD FOR 'bob'@'%.loc.gov' = PASSWORD('newpass');권한 부여 https://mari.. 2015. 4. 18. C# 웹 파싱 코드 샘플 1234567891011121314151617181920 private void button1_Click(object sender, EventArgs e) { WebRequest request = WebRequest.Create("http://u3d.as/feed/discounted.rss"); WebResponse response = request.GetResponse(); StreamReader stream = new StreamReader(response.GetResponseStream()); // 주소에 있는 텍스트 모두를 긁어 저장 string firstStr = stream.ReadToEnd(); // 파싱할 부분의 시작부분 검색 int index1 = s1.IndexOf("") + 6; //.. 2015. 4. 15. 이전 1 ··· 8 9 10 11 12 13 14 ··· 20 다음 320x100