随笔分类 -  三维建模

摘要:osg三维场景中拾取鼠标在模型表面的点击点 #include <osg/Group> #include <osg/Geode> #include <osg/ShapeDrawable> #include <osgDB/ReadFile> #include <osgViewer/Viewer> #in 阅读全文
posted @ 2024-11-19 21:26 西北逍遥 阅读(81) 评论(0) 推荐(0) 编辑
摘要:在三维空间中,给定x轴和z轴的方向,我们可以使用叉乘(Cross Product)来计算y轴的方向。叉乘是向量的运算,表示两个向量垂直的关系。假设有两个向量v1和v2,叉乘的结果是一个向量v3,这个向量v3垂直于v1和v2。以下是一个简单的Java方法,用于根据x轴和z轴的方向计算y轴的方向: pu 阅读全文
posted @ 2024-01-03 10:04 西北逍遥 阅读(41) 评论(0) 推荐(0) 编辑
摘要:计算机力学仿真的难点主要在以下几个方面: 建立准确的几何模型:力学仿真模型需要建立准确的几何模型,这包括材质、网格、约束等因素。建立准确的几何模型需要有扎实的数学和物理基础,以及丰富的实际经验。 处理复杂的物理问题:力学仿真中经常会遇到各种复杂的物理问题,如摩擦、变形、应力应变、流体力学等。解决这些 阅读全文
posted @ 2023-04-25 18:15 西北逍遥 阅读(163) 评论(0) 推荐(0) 编辑
摘要:基于BIM与点云数据的塔吊仿真系统 ########################### 阅读全文
posted @ 2022-05-13 20:30 西北逍遥 阅读(117) 评论(0) 推荐(0) 编辑
摘要:塔吊花车移动计算 void TowerPanel::slotMoveSlider(int sliderValue) { slider_length = sliderValue*1.0f; hook_position_x = center_x*(-0.0f) + slider_length*cos(a 阅读全文
posted @ 2022-05-06 20:40 西北逍遥 阅读(41) 评论(0) 推荐(0) 编辑
摘要:好久没画了,今天打开练习一下 模型obj数据 # Rhino g object_1 v -35.40777969360352 -17.70254516601563 0 v -35.40777969360352 -8.851271629333496 0 v -35.40777969360352 1.1 阅读全文
posted @ 2021-04-21 21:07 西北逍遥 阅读(260) 评论(0) 推荐(0) 编辑
摘要:Cd Key Product Name001H1 AutoCAD 2016057H1 AutoCAD LT 2016128H1 Autodesk 3ds Max 2016129H1 AutoCAD Map 3D 2016151H1 RealDWG 2016185H1 AutoCAD Architec 阅读全文
posted @ 2021-04-02 20:40 西北逍遥 阅读(542) 评论(0) 推荐(0) 编辑
摘要:基于IFC数据的施工吊装模拟 四年了,四年了,四年了,我的青春!!!!!!!!!!!!!!!!!!!!! 阅读全文
posted @ 2020-10-14 19:42 西北逍遥 阅读(217) 评论(0) 推荐(0) 编辑
摘要:基于IFC数据的建筑工地动态模拟 基础模型由revit、Rhinoceros、Maya制作,最后都转换成ifc,再由我们的三维引擎加载,渲染,制作出三维场景,这样,能够更好的整合不同类型的模型。 办公区 生活区 施工区 阅读全文
posted @ 2020-05-18 07:02 西北逍遥 阅读(441) 评论(0) 推荐(0) 编辑
摘要:IfcRamp A ramp is a vertical passageway which provides a human circulation link between one floor level and another floor level at a different elevati 阅读全文
posted @ 2020-01-04 14:51 西北逍遥 阅读(309) 评论(0) 推荐(0) 编辑
摘要:早晨找到了17年年初,小胡做的塔吊吊装模拟,截几张图,记录一下在开发施工过程模拟系统过程中那些艰难探索的日子。 阅读全文
posted @ 2019-12-25 08:27 西北逍遥 阅读(610) 评论(0) 推荐(0) 编辑
摘要:BIM模型中有很多不规则的构件,在IFC中这些不规则的构件一般用顶点的形式表示,顶点坐标提取路径: IfcObject->IfcProductDefinitionShape->IfcShapeRepresentation->Item属性->IfcExtrudedAreaSolid->IfcArbit 阅读全文
posted @ 2019-11-26 15:30 西北逍遥 阅读(729) 评论(0) 推荐(0) 编辑
摘要:基于ifc数据的bim模型吊装模拟-1 IfcWallStandardCase IfcColumn 阅读全文
posted @ 2019-11-09 19:17 西北逍遥 阅读(468) 评论(1) 推荐(0) 编辑
摘要:ifc中的IfcWallStandardCase构件 阅读全文
posted @ 2019-11-08 18:46 西北逍遥 阅读(357) 评论(0) 推荐(0) 编辑
摘要:wall_node = (osg::Node*)(index_node->clone(osg::CopyOp::DEEP_COPY_ALL));vc_mobileCrane->tranMoveIndex->addChild(wall_node); 阅读全文
posted @ 2019-11-07 21:25 西北逍遥 阅读(217) 评论(0) 推荐(0) 编辑
摘要:osg::Node节点移动的时候,可以使用osg::Matrix::translate 来完成 osg::Matrix::translate中的参数是 当前位置到目标位置需要改变的值,所以,传递参数的时候需要传入目标节点位置减去当前位置的差值。 ifc node节点移动 阅读全文
posted @ 2019-11-07 15:57 西北逍遥 阅读(892) 评论(0) 推荐(0) 编辑
摘要:获取IFC构件的位置数据、方向数据 id: 94 name: "项目编号" class: IfcProject global id: "2ZD1jkdm1DZfnCPYiAaT8B" "项目编号" final.. id: 104 name: "" class: IfcBuilding global 阅读全文
posted @ 2019-11-04 19:14 西北逍遥 阅读(692) 评论(0) 推荐(0) 编辑
摘要:直接使用osg渲染ifc数据,提高渲染速度。 #include "teslamanage.h" #include <QtWidgets/QApplication> #include <QtGui/QIcon> #include <osgViewer/Viewer> osg::ref_ptr<osg: 阅读全文
posted @ 2019-11-01 21:13 西北逍遥 阅读(720) 评论(1) 推荐(0) 编辑
摘要:基于ifc数据模型的施工现场模拟 阅读全文
posted @ 2019-10-27 20:56 西北逍遥 阅读(262) 评论(0) 推荐(0) 编辑
摘要:多任务、序列式模拟 阅读全文
posted @ 2019-08-28 21:39 西北逍遥 阅读(248) 评论(0) 推荐(0) 编辑

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