- MFC
- postman
- postman tests
- emplace_back
- postman session
- Interaction developer
- 좋은 개발자
- solidity
- Unity
- postman collection variables
- postman collection
- Java
- oracle
- C++
- Android/iOS Developer
- web developer
- postman csv
- 다빈치 리졸브
- postman html parse
- postman excel
- postman automations
- UI/UX Engineer
- Android
- 우수한 프런트 개발자
- LSL_Script
- c#
- postman pre-request
- Intellij
- 프런트엔드
- Front-end developer
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Today
- Total
목록Develop (kids) (38)
david's daily developer note
cube를 그리기 위해 Renderer를 구현한 클래스. drawFrame(GL10 gl) 메서드가 실제 그리는 메서드. gl.glMatrixMode(GL10.GL_MODELVIEW); // 3D 로 사물을 render 하라는 의미 gl.glLoadIdentity(); // 스크린 버퍼를 비운다. gl.glTranslatef(0, 0, -3.0f); // z축으로 전개해 3 단위 앞으로 변환. gl.glRotatef(mAngle, 0, 1, 0); // pipeline에게 mAngle 각도에 따라 y 방향 1단위 회전 gl.glRotatef(mAngle*0.25f, 1, 0, 0); x 방향 radians: 0~6.28, 0도 ~ 360도. 참조: http://blog.daum.net/younggun_n..
이미지 텍스처를 객체에 입힌다. 이때, llSetTexture 함수의 2번째 인자는 객체 면의 번호를 의미한다. 또한, 객체의 Content 탭안에 설정하려는 텍스트가 존재하여야 한다.(이미지 업로드 Ctrl+U) 아래의 예제는, 4개의 텍스처가 3초 단위로 변경되는 Loop이다.(네이버, SL곳간 펌.) integer page=1; default { state_entry() { llSetTexture("Texture" + (string)page, ALL_SIDES); llSetTimerEvent(3); } touch_start(integer total_number) { page=page+1; if(page>4)page=1; llSetTexture("Texture" + (string)page, ALL_S..
아바타가 객체에 근처에 있을 때, 메세지를 띄운다. llSetText("안녕?", , 1.0); 두 번째, 인자는 글자의 색을 나타내며, 예는 다음과 같다. 세번째는 글자색의 알파값. vector white = ; vector grey = ; vector black = ; vector red = ; vector green = ; vector blue = ; vector yellow = ; vector cyan = ; vector magenta = ;
view plaincopy to clipboardprint? public static String byteToString( byte[] $byte ) { String result = EncodingUtils.getString( $byte, 0, $byte.length, "Latin-1") ; return result ; } view plaincopy to clipboardprint? public static byte[] stringToByte( String $byteString ) { byte[] byteArray = EncodingUtils.getBytes($byteString, "Latin-1") ; return byteArray ; } 출처 : http://androidnote.co.kr/5