随笔分类 -  C++

上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 33 下一页
摘要:id: 94 name: "项目编号" class: IfcProjectid: 7066 name: "Default" class: IfcSiteid: 104 name: "" class: IfcBuildingid: 119 name: "F1" class: IfcBuildingSt 阅读全文
posted @ 2019-07-28 13:22 西北逍遥 阅读(503) 评论(0) 推荐(0)
摘要:危险的代码: int* p=new int(1); delete p; delete p; 安全的代码: int* p=new int(1); delete p; p = NULL; (1)delete 一次以后,p成了野指针,它作为地址的值还是有效地没还可以访问它以前指向的内存,不过那片内存被重新 阅读全文
posted @ 2019-07-28 11:20 西北逍遥 阅读(953) 评论(0) 推荐(0)
摘要:严重性 代码 说明 项目 文件 行 禁止显示状态错误 C1128 节数超过对象文件格式限制: 请使用 /bigobj 进行编译。 默认情况下,对象文件最多可存放 65,536 (2^16) 个可寻址的节。/bigobj将该地址容量增加至 4,294,967,296 (2^32)。大多数模块将从来不会 阅读全文
posted @ 2019-07-28 00:16 西北逍遥 阅读(22501) 评论(1) 推荐(1)
摘要:VC3DGraphicsWindowQt::VC3DGraphicsWindowQt(QWidget* parent, Qt::WindowFlags f) { osg::DisplaySettings* ds = osg::DisplaySettings::instance().get(); osg::setNotifyLevel(osg::NotifySeverity::... 阅读全文
posted @ 2019-07-27 23:24 西北逍遥 阅读(615) 评论(0) 推荐(0)
摘要:ViewerWidget* viewerWidget = new ViewerWidget(ifcModel); viewerWidget ->setRootNode(ifcModel->getRootNode()); this->ui.centerDockWidget->setWidget(viewerWidget ); VCIfcTreeWidget* ifcTreeWidget =... 阅读全文
posted @ 2019-07-27 12:28 西北逍遥 阅读(310) 评论(0) 推荐(0)
摘要:ui_ifcproject_20190702.h ifcproject_201907.cpp main.cpp 阅读全文
posted @ 2019-07-27 00:41 西北逍遥 阅读(578) 评论(0) 推荐(0)
摘要:void setRootNode( osg::Group* root ) { m_main_view->setSceneData( root ); if( m_hud_camera ) { root->addChild( m_hud_camera ); } m_system->setRootNode( root ); } 阅读全文
posted @ 2019-07-26 23:52 西北逍遥 阅读(200) 评论(0) 推荐(0)
摘要:void initGLWidgetAndViewer() { osgViewer::ViewerBase::ThreadingModel threadingModel = osgViewer::ViewerBase::SingleThreaded; IfcSystem* m_system->getRootNode()->setCullingActive( false ); ... 阅读全文
posted @ 2019-07-26 13:12 西北逍遥 阅读(328) 评论(0) 推荐(0)
摘要:#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #includ... 阅读全文
posted @ 2019-07-25 19:50 西北逍遥 阅读(1131) 评论(0) 推荐(0)
摘要:void slotLoadRecentIfcFileClicked() { QPushButton* btn_load = (QPushButton*)sender(); if( !btn_load ) { return; } int row = m_combo_recent_files->currentIndex(); ... 阅读全文
posted @ 2019-07-25 09:55 西北逍遥 阅读(332) 评论(0) 推荐(0)
摘要:Detected IFC version: IFC2X3 Warning: Sweeper::createTriangulated3DFace, carve::triangulate::incorporateHolesIntoPolygon failed , IFC entity: #41824=I 阅读全文
posted @ 2019-07-25 09:35 西北逍遥 阅读(320) 评论(0) 推荐(0)
摘要:下载Carve库 https://github.com/folded/carve 目录结构如下: 用Visual Studio2015打开,点击右键,生成即可 在bin目录下生成了 .lib文件 之前用Visual Studio2017编译过,但在Visual Studio2015和2013中都不能 阅读全文
posted @ 2019-07-24 19:21 西北逍遥 阅读(383) 评论(0) 推荐(0)
摘要:项目环境变量配置 include E:\Qt\Qt5.12.2\5.12.2\msvc2017_64\include E:\OpenSourceGraph\OpenSceneGraph_install\include E:\IFC\boost_1_66_0_vs2017_20190416 E:\IF 阅读全文
posted @ 2019-07-23 11:38 西北逍遥 阅读(625) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2019-07-22 13:07 西北逍遥 阅读(197) 评论(0) 推荐(0)
摘要:osg::Shape类 继承自osg::Object类; osg::Shape类是各种内嵌几何体的基类,不但可以用于剔除和碰撞检测,还可用于生成预定义的几何体对象; osg::ShapeDrawable类: 派生自osg::Drawable类; 在osg::ShapeDrawable类的构造函数中提 阅读全文
posted @ 2019-07-20 10:11 西北逍遥 阅读(961) 评论(0) 推荐(0)
摘要:遍历节点树:osg::Node类中有两个辅助函数: 转自:https://www.cnblogs.com/hzhg/archive/2010/12/17/1908764.html 阅读全文
posted @ 2019-07-20 09:35 西北逍遥 阅读(1630) 评论(0) 推荐(0)
摘要://顶点着色器 static const char* vertShader = { "varying vec4 color;\n" "void main(void)\n" "{\n" "color = gl_Vertex;\n" "gl_Position=gl_ModelViewProjectionMatrix*gl_Vertex;\n" "}... 阅读全文
posted @ 2019-07-19 10:46 西北逍遥 阅读(476) 评论(0) 推荐(0)
摘要:日志: “TeslaManage.exe”(Win32): 已加载“F:\OpenScenceGraphProject\OSG_QT_2019\x64\Debug\TeslaManage.exe”。已加载符号。“TeslaManage.exe”(Win32): 已加载“C:\Windows\Syst 阅读全文
posted @ 2019-07-19 10:08 西北逍遥 阅读(2450) 评论(0) 推荐(0)
摘要:/******************************************************************************** ** Form generated from reading UI file 'qt_chart1.ui' ** ** Created by: Qt User Interface Compiler version 5.12.2 *... 阅读全文
posted @ 2019-07-18 13:24 西北逍遥 阅读(1021) 评论(0) 推荐(0)
摘要:KDChart 甘特图在Qt中的加载使用案例,代码来自官方 mainwindow.h entrydialog.h entrydelegate.h main.cpp ui_mainwindow.h ui_entrydialog.h legend_example.pro 运行效果: QWindowsWi 阅读全文
posted @ 2019-07-17 19:37 西北逍遥 阅读(3392) 评论(0) 推荐(0)

上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 33 下一页