Skip to content

**** ****

for my bad memories..

Archive for the ‘Programming’ Category

[카테고리:] Programming

Programming

c++의 std::vector 는 메모리에 저정하는데 저장하기 어려운 많은 양의 데이타는.. 파일로 저장해 놓으면 좋을 듯.. 바로 File Vector 가 std::vector 쓰듯이 쓰면 파일로 저장을 함.. https://github.com/keean/File-Vector/ File-Vector-master.zip 코드에서.. ftruncate을 ftruncate64 로 고치면 대용량의 파일도 지원..

[카테고리:] Programming

Programming

posix의 메모리 매핑 API인 mmap 을 Windows API 를 이용하여 그대로 구현한 mman 라이브러리.. mman-win32-master.zip

[카테고리:] Programming

Programming

https://products.aspose.com/cells/cpp/ Microsoft Excel 이 없이 엑셀 스프레드시트를 생성, 읽기, 쓰기 및 분석을 할 수 있는 C++ 라이브러리. Aspose.Cells for C++ is a native C++ API for Spreadsheet manipulation. Applications can perform functions such as creating, converting and editing spreadsheet’s Built-In and Custom Properties, Themes, Styles and Formatting, Data Validation, Conditional Formatting, Reading, Writing and Calculating […]

[카테고리:] Programming

Programming

Qt 에서 png 이미지를 embed 해서 사용하는 경우.. 아래의 메세지가 보이면.. 아래와 같이 해결.. 단.. 이미지 파일이 수정 되므로.. 백업해놓는것이 좋음.

[카테고리:] Programming

Programming

출처: https://stackoverflow.com/a/23021017 n bytes 에서 특정 bit 영역만 추출. pickbits.h pickbits.c test.c

[카테고리:] Programming

Programming

출처: https://glbook.gamedev.net/GLBOOK/glbook.gamedev.net/moglgp/advclip.html 솔리드 모델의 경우.. Clipping 후 Stencil 버퍼를 사용하여 Clip Edge를 그리는 방법.. AdvancedClipPlanes.7z Clip Eedg 를 그리기 위해서 추가적으로 2pass 랜더링이 필요하므로.. 어느정도의 성능 감수는 필요..