Cocos2d-x » Tips and Tricks » About device orientation

http://cocos2d-x.org/projects/cocos2d-x/wiki/About_device_orientation

[Graphics] crunch - Advanced DXT texture compression and real-time transcoding library - Google Project Hosting

crunch is an open source ( ZLIB license ) lossy texture compression library and command line compression tool for developers that distribute and use content in the DXT1/5/N or 3DC/BC5 compressed mipmapped texture formats. It consists of a command line tool named "crunch", a compression library named "crnlib", and a single-header file, completely stand alone transcoder C++ class located in inc/crn_decomp.h . crnlib's results are competitive to transform based recompression approaches, as shown here . ... ... crunch - Advanced DXT texture compression and real-time transcoding library - Google Project Hosting

[Graphics] Inverse Kinematics (2 joints) for foot placement

#AltDevBlogADay » Inverse Kinematics (2 joints) for foot placement

Computer Graphics Data

유명한 Graphics Data. (Crytek Sponza, Chinese Dragon, Cornell Box, ...) Computer Graphics Data

cocos2d-x

이전엔 cocos2d로 아이폰 개발했었는데, 지금은 cocos2d-x로 전환하기 위해서 테스트 중입니다. 다양한 플랫폼 지원이 괜찮네요. lua script 지원도 괜찮구요. ㅎㅎ http://www.cocos2d-x.org/

py2exe

from distutils.core import setup import py2exe, sys #setup( console=["test.py"] ) ##setup( windows=[ {"script" : "test.py"}], ## options={ ## "py2exe":{ ## "packages" : ["encodings", "wx",]} ## } ## ) ##sys.argv.append("py2exe") ## ##setup(console=["test.py"], ## options={ ## "py2exe":{ ## "packages" : ["pywinauto", "pywinauto.controls", "pywinauto.application"], ## "bundle_files":1, ## "optimize":2, ## } ## }, ## zipfile = None ## ) # 현재(2011-12-29)까지 가장 작은 개수에 파일을 만들어줍니다. setup(console=["test.py"], options={ "py2exe":{ "compressed":1, "optimize":2, "bundl...

python에서 한글 추출

python에서 한글만 추출하는 방법 words = re.findall(u'[\uAC00-\uD7A3]+', content)