上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 94 下一页
摘要: QGis 地图类别 链接OSM http://a.tile.openstreetmap.org/{z}/{x}/{y}.png天地图 http://t0.tianditu.gov.cn/img_w/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAY 阅读全文
posted @ 2021-09-14 17:07 西北逍遥 阅读(184) 评论(0) 推荐(0) 编辑
摘要: Pset_WindowCommon 所有窗实例的定义中通用的属性。 NameTypeDescription Reference P_SINGLEVALUE / IfcIdentifier Bauteiltyp Bezeichnung zur Zusammenfassung gleichartiger 阅读全文
posted @ 2021-09-14 09:42 西北逍遥 阅读(58) 评论(0) 推荐(0) 编辑
摘要: v开头的行是顶点数据, v的行表示是顶点数据之空间坐标(position), vt的行表示是顶点数据之纹理坐标(texture coordinate), vn的行表示是顶点数据之法线向量(normal)。 顶点数据(Vertex data):v 几何体顶点(Geometric vertices)vt 阅读全文
posted @ 2021-09-13 21:47 西北逍遥 阅读(264) 评论(0) 推荐(0) 编辑
摘要: Qto_BeamBaseQuantities 定义所有梁引用时通用的基准数量。 NameTypeDescription Length Q_LENGTH Länge Physikalische Länge des Balkens ohne Berücksichtigung von Abschrägun 阅读全文
posted @ 2021-09-13 08:03 西北逍遥 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 塔吊模拟 //滑车 box_slider = new osg::Box( osg::Vec3(center_x + tower_width*(14.0f), center_y, index_z - tower_height*1.4f + column_width*4.0f), tower_width 阅读全文
posted @ 2021-09-12 19:47 西北逍遥 阅读(81) 评论(0) 推荐(0) 编辑
摘要: Qto_ChimneyBaseQuantities 所有烟囱引用的定义通用的基准数量。 NameTypeDescription Length Q_LENGTH Länge Gesamtlänge des Schornsteins ohne Berücksichtigung von Abschrägu 阅读全文
posted @ 2021-09-11 19:41 西北逍遥 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 使用自己的三维建模软件绘制塔吊 if (towerPanelObj==nullptr) { towerPanelObj = new TowerPanel(); towerPanelObj->setWindowTitle(u8"塔吊参数"); QIcon iconApp; iconApp.addFil 阅读全文
posted @ 2021-09-10 12:57 西北逍遥 阅读(700) 评论(0) 推荐(0) 编辑
摘要: Qt QSplitter布局 #include <QSplitter> QVBoxLayout *verticalLayoutMain; QSplitter *splitterMain = nullptr; QSplitter *splitterLeft = nullptr; QSplitter * 阅读全文
posted @ 2021-09-09 16:31 西北逍遥 阅读(190) 评论(0) 推荐(0) 编辑
摘要: maya图片文件加载过程学习 // // Copyright 2017 Autodesk, Inc. All rights reserved. // // Use of this software is subject to the terms of the Autodesk license // 阅读全文
posted @ 2021-09-09 12:28 西北逍遥 阅读(48) 评论(0) 推荐(0) 编辑
摘要: Qto_ColumnBaseQuantities 所有列引用的定义通用的基准数量。 NameTypeDescription Length Q_LENGTH Länge Physikalische Länge der Stütze ohne Berücksichtigung von Abschrägu 阅读全文
posted @ 2021-09-08 18:54 西北逍遥 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 自己开发一款能够绘制简单三维模型的软件 ####################### 阅读全文
posted @ 2021-09-07 21:27 西北逍遥 阅读(309) 评论(0) 推荐(0) 编辑
摘要: Error: Failed to connect database.Driver not loaded Driver not loaded Qt打包好的程序报错:Error: Failed to connect database.Driver not loaded Driver not loaded 阅读全文
posted @ 2021-09-07 13:04 西北逍遥 阅读(608) 评论(0) 推荐(0) 编辑
摘要: QTableWidget清空并删除所有行 while (tableWidget->rowCount()>0) { tableWidget->removeRow(0); } ##################################### 阅读全文
posted @ 2021-09-06 16:43 西北逍遥 阅读(1537) 评论(0) 推荐(0) 编辑
摘要: SQLite - 判断表是否存在 SELECT count(*) FROM sqlite_master WHERE type="table" AND name = "表名"; 查询的结果 qlite> sqlite> SELECT count(*) FROM sqlite_master WHERE 阅读全文
posted @ 2021-09-05 20:39 西北逍遥 阅读(4334) 评论(0) 推荐(0) 编辑
摘要: 很久没用过了,今天又用了 QSplitter *splitterMain; QTextEdit *textleft; QSplitter *splitterRight; QTextEdit *textUp; QTextEdit *textBottom; QVBoxLayout *vLayout=ne 阅读全文
posted @ 2021-09-04 17:45 西北逍遥 阅读(57) 评论(0) 推荐(0) 编辑
摘要: Qto_CoveringBaseQuantities 用于定义应用于空间的所有覆盖物引用的基本数量。 NameTypeDescription Width Q_LENGTH Dicke Dicke der Bekleidung, der Wert wird nur angegeben, wenn er 阅读全文
posted @ 2021-09-04 15:00 西北逍遥 阅读(53) 评论(0) 推荐(0) 编辑
摘要: osg旋转 osg::Matrix matrix_xy_2 = osg::Matrix::translate(-axisPos_xy_2) * osg::Matrix::rotate(quat_xy_2) * osg::Matrix::translate(axisPos_xy_2); ####### 阅读全文
posted @ 2021-09-03 16:00 西北逍遥 阅读(245) 评论(0) 推荐(0) 编辑
摘要: Qto_CurtainWallQuantities 幕墙所有引用的定义共用的基准数量。 NameTypeDescription Length Q_LENGTH Länge Gesamtlänge der Vorhangfassade gemessen entlang der Mittellinie 阅读全文
posted @ 2021-09-03 13:19 西北逍遥 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 看了半天,没看明白是怎么实现的! ReaderWriter::ReadResult readNode(const std::string& fileName,const Options* options, bool buildKdTreeIfRequired=true) { ReaderWriter 阅读全文
posted @ 2021-09-02 21:00 西北逍遥 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 方块 # This file uses centimeters as units for non-parametric coordinates. mtllib 2021090201.mtl g default v -3400.000000 -3400.000000 3400.000000 v 340 阅读全文
posted @ 2021-09-02 17:27 西北逍遥 阅读(100) 评论(0) 推荐(0) 编辑
摘要: Qto_DoorBaseQuantities 所有门引用的定义通用的基准数量。 NameTypeDescription Width Q_LENGTH Breite Gesamte Breite des Türrahmens. Wird nur für rechteckige Türen angege 阅读全文
posted @ 2021-09-01 11:01 西北逍遥 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 全微分在近似计算中的应用 例5: 计算 (1.04)2.02 的近似值。 解:设函数 f(x,y)=xy .显然,要计算的值就是函数在x=1.04,y=2.02时的函数值 f(1.04,2.02). 取 x=1,y=2 ,Δx=0.04, Δy=0.02.由于 f(1,2)=1 fx(x,y)=yx 阅读全文
posted @ 2021-08-31 21:14 西北逍遥 阅读(1869) 评论(0) 推荐(0) 编辑
摘要: Qto_MemberBaseQuantities 构件所有引用的定义通用的基本数量。 NameTypeDescription Length Q_LENGTH Länge Physikalische Länge des Stabs ohne Berücksichtigung von Abschrägu 阅读全文
posted @ 2021-08-31 12:09 西北逍遥 阅读(26) 评论(0) 推荐(0) 编辑
摘要: Qto_PlateBaseQuantities 定义所有板引用时通用的基准数量。 NameTypeDescription Width Q_LENGTH Dicke Dicke der Platte, der Wert wird nur angegeben, wenn er konstant ist. 阅读全文
posted @ 2021-08-30 15:25 西北逍遥 阅读(44) 评论(0) 推荐(0) 编辑
摘要: Pset_BuildingElementProxyCommon IfcBuildingElementProxy所有实例定义的公共属性。 NameTypeDescription Reference P_SINGLEVALUE / IfcIdentifier Bauteiltyp Bezeichnung 阅读全文
posted @ 2021-08-29 09:23 西北逍遥 阅读(53) 评论(0) 推荐(0) 编辑
摘要: matlab绘制函数 clc; clear; x=-50:0.5:50; y = x.^3-x.^2-x+1; plot(x,y) ######################## 阅读全文
posted @ 2021-08-28 20:43 西北逍遥 阅读(614) 评论(0) 推荐(0) 编辑
摘要: Qto_RailingBaseQuantities 所有扶手引用的定义通用的基准数量。 NameTypeDescription Length Q_LENGTH Länge Länge der Railing entlang der Referenzlinie, ohne Berücksichtigu 阅读全文
posted @ 2021-08-28 12:08 西北逍遥 阅读(48) 评论(0) 推荐(0) 编辑
摘要: Qto_RampFlightBaseQuantities 坡道梯段所有引用的定义通用的基本数量。 NameTypeDescription Length Q_LENGTH Länge Gesamtlänge der Rampe gemessen entlang der Lauflinie der Ra 阅读全文
posted @ 2021-08-27 17:14 西北逍遥 阅读(43) 评论(0) 推荐(0) 编辑
摘要: vs2015 编译 ignition-utils1 Selecting Windows SDK version 10.0.17134.0 to target Windows 10.0.19042. The C compiler identification is MSVC 19.0.24215.1 阅读全文
posted @ 2021-08-26 12:48 西北逍遥 阅读(285) 评论(0) 推荐(0) 编辑
摘要: ign-cmake-ignition-cmake2_2.8.0 cmake log Selecting Windows SDK version 10.0.17134.0 to target Windows 10.0.19042. The C compiler identification is MS 阅读全文
posted @ 2021-08-26 12:36 西北逍遥 阅读(101) 评论(0) 推荐(0) 编辑
上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 94 下一页