• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
lizhengjin
博客园    首页    新随笔    联系   管理    订阅  订阅
上一页 1 ··· 10 11 12 13 14 15 16 17 18 19 下一页
2009年2月10日
qt和vtk共用
摘要: QT与VTK的结合开发 2008/07/16 15:26 最近,由于项目的需要,我打算使用VTK来开发程序,VTK全名是VisualizationToolKit,它是一套跨平台的C++库,对 OpenGL作了较全面的封装,将各种三维模型的存储,运算,显示,交互等内容全都以类的方式封装起来了,并且提供比Op... 阅读全文
posted @ 2009-02-10 11:00 lizhengjin 阅读(2882) 评论(0) 推荐(1)
在vc6.0下编译vtk
摘要: VC6.0下VTK的安装 2009年01月19日 星期一 20:33 1. 必须要下载的东西,VC6已经装好为前提: vtk-5.2.0-win32.exe 安装程序 http://vtk.org 的Download ... 阅读全文
posted @ 2009-02-10 10:50 lizhengjin 阅读(2306) 评论(9) 推荐(0)
2009年2月2日
qt中一个自定义布局类的代码注释
摘要: /**************************************************************************** ** ** Copyright (C) 2004-2007 Trolltech ASA. All rights reserved. ** ** This file is part of the example classes of the Qt... 阅读全文
posted @ 2009-02-02 16:52 lizhengjin 阅读(1032) 评论(0) 推荐(0)
2009年1月17日
qt界面使用划块控制数字框
摘要: #include #include "yu.h" #include "QWidget.h" #include "QMenuBar.h" #include #include "QAction.h" #include "QLCDnumber.h" #include "QSlider.h" #include "QObject.h" int main(int argc, char *argv[]) ... 阅读全文
posted @ 2009-01-17 15:56 lizhengjin 阅读(523) 评论(0) 推荐(0)
用qt生成弹出菜单
摘要: #include #include "yu.h" #include "QWidget.h" #include "QMenuBar.h" #include #include "QAction.h" int main(int argc, char *argv[]) { QApplication a(argc, argv); QWidget w;//形成一个画布 QMenuBar bar(&... 阅读全文
posted @ 2009-01-17 14:31 lizhengjin 阅读(2562) 评论(0) 推荐(0)
2009年1月16日
vs2005下编译qt
摘要: 1.下载open_source包,这个可以上官方网站下载最新版本,我下载的是QT4.3.4版本。使用迅雷很快,软件包50多M。 2.解压文件到某路径下,如D:\QT\4.3.4; 3. 设置环境变量,我的电脑右键->属性->高级->环境变量->系统变量。在Path添加D:\QT\4.3.4\bin,为了定位 qmake,moc等其他的QT命令。 4.设置VS2005环境,cmd 打... 阅读全文
posted @ 2009-01-16 14:51 lizhengjin 阅读(863) 评论(0) 推荐(0)
vs2005下编译qt
摘要: 1.下载open_source包,这个可以上官方网站下载最新版本,我下载的是QT4.3.4版本。使用迅雷很快,软件包50多M。 2.解压文件到某路径下,如D:\QT\4.3.4; 3. 设置环境变量,我的电脑右键->属性->高级->环境变量->系统变量。在Path添加D:\QT\4.3.4\bin,为了定位 qmake,moc等其他的QT命令。 4.设置VS2005环境,cmd 打... 阅读全文
posted @ 2009-01-16 14:51 lizhengjin 阅读(552) 评论(0) 推荐(0)
用cmake安装vs2005下的vtk
摘要: windows: 预安装vc6.0 vtk-5.0.0.zip vtk的源码 vtkdata-5.0.0.zip vtk例子所需要的数据 CMSetup243-win32.exe cmake安装程序 上面不同系统下,vtk源码以及data其实是一样的,只不过使用了不同打包工具。另外,cmake版本的选择是根据vtk版本来定的,比如vtk5.0所需要的最低cmake版本好像是2.0,这里我... 阅读全文
posted @ 2009-01-16 14:22 lizhengjin 阅读(2039) 评论(1) 推荐(0)
2008年12月24日
关于图形数学的基本问题,沿任意轴旋转,或者旋转坐标系的推导过程
摘要: 1. 图形学基本问题(15分) 在右手坐标系A内,P点的坐标是(1, 1, 1 ), M点坐标是(3, 4, 5), N点坐标是(6, 7, 8) a) 求P点一M点为中心,绕Y轴旋转30°,再绕Z轴旋转-- 60°后的坐标点Q b) 求P点以MN为轴,旋转—45°所获得的坐标点。 c) 假设B坐标系是有A坐标系经过如下步骤变换获得: ... 阅读全文
posted @ 2008-12-24 14:58 lizhengjin 阅读(1564) 评论(0) 推荐(0)
2008年12月5日
自己写的,用c语言实现的一个数组存储的线性表
摘要: #include #include #include #include #include #include #include #include #include #include using namespace std; //动态内存 typedef struct tagElement { int x; int y; } NODE; int init_size = ... 阅读全文
posted @ 2008-12-05 22:05 lizhengjin 阅读(438) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14 15 16 17 18 19 下一页
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3