http://blog.daum.net/_blog/BlogTypeView.do?blogid=0UhXk&articleno=1989&admin=&refequery=%EF%BF%BD%EB%A9%B8%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EB%82...
-
This is Slide 1 Title
This is slide 1 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
-
This is Slide 2 Title
This is slide 2 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
-
This is Slide 3 Title
This is slide 3 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
2014년 10월 27일 월요일
2014년 10월 24일 금요일
2014년 10월 22일 수요일
[Android] 안드로이드 잠금화면(LockScreen) 만들기 기초1
http://ccdev.tistory.com/16 ㅈㅏㅁ금화면 ,부팅시 실행서비스 등 좋은 샘플이 있...
2014년 10월 7일 화요일
두 박스간 스케일 비율 계산
this.percentageBetweenContainer=function( argContainer ) {var pntContainer=argContainer;var floatXScale=1.0;var floatYScale= 1.0;var floatRet=1.0;if( pntContainer.w > posBounds.w && pntContainer.h > posBounds.h ){return floatRet;}floatXScale=(pntContainer.w)/(posBounds.w);floatYScale=(pntContainer.h)/(posBounds.h);if(floatXScale<floatYScale){floatRet=floatXScale;}else{floatRet=floatYScale;}return...
두 박스 간의 겹침 % 계산하는 로직- 따온거임.
http://forum.ragezone.com/f144/total-overlapping-percent-2-rectangles-895041/-func-function rectCollisionPercentage(argRectA,argRectB){/** argRectA = {x:0, y:0, r width:100, height:100};* argRectB ={x:0, y:0, r width:100, height:100};*/var r1 = {left:argRectA.x,top:argRectA.y,right:argRectA.x+argRectA.width-1,bottom:argRectA.y+argRectA.height-1,width:argRectA.width,height:argRectA.height};var r2 =...