10 2011 档案

3D数学基础:图形与游戏开发
摘要:Chapter 4 Vectors 第4章 向量 4.1 Vector — A Mathematical Definition 向量——数学定义 4.1.1 Vectors vs. Scalars 向量和标量 “velocity” and “displacement” are vector quantities, while “speed” and “distance” are s... 阅读全文

posted @ 2011-10-30 16:00 katago 阅读(873) 评论(0) 推荐(0) 编辑

齐次坐标
摘要:http://daehgib.blog.163.com/blog/static/186107142201151672255445/ http://daehgib.blog.163.com/blog/static/1861071422011579551134/ http://www.opengpu.org/bbs/forum.php?mod=viewthread&tid=961&pa... 阅读全文

posted @ 2011-10-27 17:10 katago 阅读(145) 评论(0) 推荐(0) 编辑

opengl faq
摘要:http://www.opengl.org/resources/faq/technical/ http://www.xmission.com/~nate/tutors.html http://www.opengl.org/resources/faq/technical/openglfaq.txt http://iask.sina.com.cn/u/1698675670/ish?f... 阅读全文

posted @ 2011-10-24 17:52 katago 阅读(166) 评论(0) 推荐(0) 编辑

opengl overlay plane
摘要:http://www.opengl.org/resources/faq/technical/contexts.htm 分层渲染。支持透明色。两层可以混合。 阅读全文

posted @ 2011-10-24 15:51 katago 阅读(443) 评论(0) 推荐(0) 编辑

ubuntu freeglut
摘要:写一个sample.c,内容如下: # include <GL/glut.h> # include <stdlib.h> /**//* 初始化材料属性、光源属性、光照模型,打开深度缓冲区 */ void init ( void ) { GLfloat mat_specular [ ] = { 1.0, 1.0, 1.0, 1.0 }; GLf... 阅读全文

posted @ 2011-10-24 13:42 katago 阅读(733) 评论(0) 推荐(0) 编辑

VS2008环境下的Freeglut 2.6.0配置
摘要:GLUT 代表OpenGL Utility Tookit。Mark J.Kilgard 为了使OpenGL应用程序结构能够真正独立于窗口系统构思了GLUT库。 Freeglut是一个GLUT的开源实现。 本文介绍VS2008环境下的Freeglut 2.6.0配置: 1. 下载Freeglut:http://freeglut.sourceforge.net/,http://prdownloa... 阅读全文

posted @ 2011-10-24 13:26 katago 阅读(564) 评论(0) 推荐(0) 编辑

Qt platform mkspecs
摘要:https://gitorious.org/qt-platform-mkspecs A central collection of tested Qt mkspecs for a variety of hardware platforms 收集各个硬件平台的mkspecs 阅读全文

posted @ 2011-10-21 12:47 katago 阅读(752) 评论(0) 推荐(0) 编辑

Qt 5 on Raspberry Pi
摘要:http://developer.qt.nokia.com/wiki/Qt_5_on_Raspberry_Pi qt5可以在raspberry pi上跑起来了。 阅读全文

posted @ 2011-10-21 12:39 katago 阅读(995) 评论(0) 推荐(0) 编辑

Qt Creator and Clang
摘要:Qt Creator and Clang Posted by Erik Verbruggen on October 19, 2011 · 24 comments As... 阅读全文

posted @ 2011-10-21 09:34 katago 阅读(3363) 评论(0) 推荐(1) 编辑

qml 4.8 bug: ListView.view不能访问
摘要:提示:TypeError: Result of expression 'ListView.view' [null] is not an object. import QtQuick 1.0 Rectangle { width: 200; height: 200 ListModel { id: fruitModel property stri... 阅读全文

posted @ 2011-10-20 18:25 katago 阅读(467) 评论(0) 推荐(0) 编辑

gl 术语
摘要:cull1 [kʌl] 剔除 frustum ['frʌstəm] 【几何学】 平截头体 View Frustum Culling http://en.wikipedia.org/wiki/Viewing_frustum notional ['nəuʃənəl] adj. 概念性的;想像的 pyramid ['pirəmid] n. 金字塔;角锥体 perp... 阅读全文

posted @ 2011-10-20 14:40 katago 阅读(290) 评论(0) 推荐(0) 编辑

板子上运行提示 找不到qml插件
摘要:module "Qt.labs.folderlistmodel" is not installed import Qt.labs.folderlistmodel 1.0 解决方法: cp /mnt/qtmarvell/mvqt/imports/ -a /opt/qtmarvell/mvqt/ 阅读全文

posted @ 2011-10-19 17:44 katago 阅读(3760) 评论(0) 推荐(0) 编辑

glaux.h vs2008
摘要:VS2008已经把它合并到一个wingdi.h的头文件里了, 所以只要包含如下几个头文件即可: #include <windows.h> #include <gl\gl.h> #include <gl\glu.h> 链接的时候加入opengl32.lib glu32.lib 这几个库就可以了 不过glaux.lib这个库还是存在的,它的路径在: ... 阅读全文

posted @ 2011-10-18 13:32 katago 阅读(2097) 评论(0) 推荐(0) 编辑

win7下vs2008完美破解安装
摘要:win7下vs2008完美破解安装 发表于 2011 年 04 月 06 日 由 sailor | 6 则评论 | 程序设计 话说,我现在也跟了一下潮流换win7了, 本来在xp下用过的vs2008在新环境下出现了罢工的问题,好一个郁闷与纠结啊。不过google+baidu 了半天,找到一个方法,分享一下(我用的win7 32位旗舰版本) 首先去微软下载一个90天试用版本的vs2008 h... 阅读全文

posted @ 2011-10-17 19:47 katago 阅读(622) 评论(0) 推荐(0) 编辑

qt 画图相关
摘要:Paint System中总结了: qpainter –> qpaintengine->qpaintdevice Coordinate System中总结了: The coordinate system is controlled by the QPainter class. Together with the QPaintDevice and QPaintEngine classes, QPa... 阅读全文

posted @ 2011-10-14 19:08 katago 阅读(757) 评论(0) 推荐(0) 编辑

qt delegate
摘要:http://devbean.blog.51cto.com/448512/271255 http://blog.csdn.net/tonylk/article/details/1315053 http://stackoverflow.com/questions/5457154/qstyleditemdelegate-how-does-updateeditorgeometry-works 阅读全文

posted @ 2011-10-13 18:29 katago 阅读(314) 评论(0) 推荐(0) 编辑

技巧:Vimdiff 使用
摘要:http://www.ibm.com/developerworks/cn/linux/l-vimdiff/ 启动方法 首先保证系统中的diff命令是可用的。Vim的diff模式是依赖于diff命令的。Vimdiff的基本用法就是: # vimdiff FILE_LEFT FILE_RIGHT 或者 # vim -d FILE_LEFT FILE_RIGHT除了用这种方法启动vim... 阅读全文

posted @ 2011-10-10 14:28 katago 阅读(971) 评论(0) 推荐(0) 编辑

linux查看硬件信息及驱动设备相关整理
摘要:linux查看硬件信息及驱动设备相关整理 (2009-07-24 12:13) 分类: kernel 在LINUX环境开发驱动程序,首先要探测到新硬件,接下来就是开发驱动程序。 常用命令整理如下: 用硬件检测程序kuduz探测新硬件:service kudzu start ( or restart) 查看CPU信息:cat /proc/cpuinfo 查看板卡信息:cat /proc... 阅读全文

posted @ 2011-10-10 13:58 katago 阅读(2885) 评论(0) 推荐(0) 编辑

Linux下硬件信息查看(一)--dmidecode
摘要:作者:FinalBSD 原载: [url]http://www.sanotes.net/html/y2009/312.html[/url] 版权所有。转载时必须以链接形式注明作者和原始出处及本声明。 Dmidecode dmidecode以一种可读的方式dump出机器的DMI(Desktop Management Interface)信息。这些信息包括了硬件以及BIOS,既可以得到... 阅读全文

posted @ 2011-10-10 10:35 katago 阅读(614) 评论(0) 推荐(0) 编辑

Linux下显示硬件信息(二)--lshw
摘要:2009-03-25 20:35:09 标签:linux 作者:FinalBSD 原载: [url]http://www.sanotes.net/html/y2009/316.html[/url] 版权所有。转载时必须以链接形式注明作者和原始出处及本声明。 lshw lshw(Hardware Lister)是另外一个可以查看硬件信息的工具,不仅如此,它还可以用来做一些... 阅读全文

posted @ 2011-10-10 10:35 katago 阅读(463) 评论(0) 推荐(0) 编辑

RFKill 【解决opensuse11.4 无法开启无线网的问题】
摘要:第一次装opensuse,不由得赞叹它的界面还有yast。真的很人性化、不过我却差点被无线扼杀了、、、 不管怎么点,就是上不去无线,我以为是驱动的问题。下了驱动,但是编译太恶心了一直没装上,后来去 我们的fedora群里一问。有人提议用rfkill这个工具,之前没听说过。于是查了一下,官方资料如下: 解决方法 : rfkill unblock all 阅读全文

posted @ 2011-10-09 17:58 katago 阅读(943) 评论(0) 推荐(0) 编辑

解决ubuntu下无线网卡不能启用
摘要:解决ubuntu下无线网卡不能启用 lspci一切正常,显示Atheros AR9285 Wireless Network Adapter (PCI-Express) dmesg无相关错误 ifconfig 无wlan0, ifconfig -a 显示wlan0 iwconfig 有wlan0 iwlist能搜索到热点,但是无论如何连接不上 桌面上的nm-app... 阅读全文

posted @ 2011-10-09 17:55 katago 阅读(25563) 评论(2) 推荐(0) 编辑

iso安装ubuntu
摘要:把ubuntu-11.04-desktop-amd64.iso打开,提取出casper\vmlinuz和casper\initrd.lz放到C盘,使用easyBCD添加NeoGrub,再在configure中添加:title Install Ubuntu 11.04root (hd0,2)kernel (hd0,7)/vmlinuz boot=casper iso-scan/filename=/u... 阅读全文

posted @ 2011-10-09 12:48 katago 阅读(336) 评论(0) 推荐(0) 编辑

Qt Graphics and Performance – The Cost of Convenience
摘要:Qt Graphics and Performance – The Cost of Convenience Posted byGunnar SlettaonJanuary 11, 2010·25 comments Previous posts in this topic: Whats Hot and whats No... 阅读全文

posted @ 2011-10-04 21:39 katago 阅读(1358) 评论(0) 推荐(0) 编辑

Qt Graphics and Performance – Generating Content in Threads
摘要:Qt Graphics and Performance – Generating Content in Threads Posted byGunnar SlettaonJanuary 21, 2010·14 comments Previous posts in this topic: Whats Hot and wh... 阅读全文

posted @ 2011-10-04 19:55 katago 阅读(555) 评论(0) 推荐(0) 编辑

A Qt Scenegraph
摘要:A Qt Scenegraph Posted byGunnar SlettaonMay 18, 2010·21 comments Source code can be found here:http://qt.gitorious.org/qt-labs/scenegraph A few months ago, I wrote a... 阅读全文

posted @ 2011-10-04 19:38 katago 阅读(761) 评论(0) 推荐(0) 编辑

qt 画图
摘要:http://labs.qt.nokia.com/category/graphics-dojo/ 阅读全文

posted @ 2011-10-03 22:09 katago 阅读(285) 评论(0) 推荐(0) 编辑

tree model例子
摘要:Foundations+of+Qt+Development.pdf 中objecttreemodel不错。 http://doc.qt.nokia.com/4.7-snapshot/itemviews-simpletreemodel.html C++ GUI Programming with Qt4, 2nd Edition http://www.informit.com... 阅读全文

posted @ 2011-10-02 23:20 katago 阅读(307) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 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 29
30 31 1 2 3 4 5

统计

点击右上角即可分享
微信分享提示