上一页 1 ··· 70 71 72 73 74 75 76 77 78 ··· 96 下一页
摘要: 4 8 400010100010000000011010000000000000000000000000000000000000000000000000001000001101000000000000000000000请按任意键继续. . . 阅读全文
posted @ 2019-12-13 17:17 西北逍遥 阅读(1123) 评论(0) 推荐(0)
摘要: 本质:引用是别名,指针是地址,具体的: ①从现象上看,指针在运行时可改变其所指向的值,而引用一旦和某个对象绑定后就不在改变。这句话可以这样理解:指针可以被重新赋值以指向另一个不同的对象。但是引用总指向在初始化时被指定的对象,以后不能改变,但是指定的对象内容可以改变。 ②从内存上分配看,程序为指针变量 阅读全文
posted @ 2019-12-13 16:27 西北逍遥 阅读(974) 评论(0) 推荐(0)
摘要: #include <iostream> #include <list> using namespace std; int main() { list<char> list1; for (char c1='a';c1<='z';++c1) { list1.push_back(c1); } list<c 阅读全文
posted @ 2019-12-12 20:18 西北逍遥 阅读(221) 评论(0) 推荐(0)
摘要: Algorithm测试 #include <algorithm> #include <vector> #include <iostream> using namespace std; int main() { vector<int> vec_1 = {3,7,6,2,1,8,9}; auto min 阅读全文
posted @ 2019-12-11 19:42 西北逍遥 阅读(193) 评论(0) 推荐(0)
摘要: array 0 test11 test2234 阅读全文
posted @ 2019-12-10 16:33 西北逍遥 阅读(292) 评论(0) 推荐(0)
摘要: IFC1.0中的新实体 阅读全文
posted @ 2019-12-09 19:30 西北逍遥 阅读(290) 评论(0) 推荐(0)
摘要: An IfcCircle is a curve consisting of a set of points having equal distance from the center. NOTE A circular arc segment is defined by using the IfcTr 阅读全文
posted @ 2019-12-08 20:16 西北逍遥 阅读(246) 评论(0) 推荐(0)
摘要: /** * This method copys the object as shallow copy (all referenced objects are remaining). * * @return the cloned object **/ public Object shallowCopy 阅读全文
posted @ 2019-12-07 20:14 西北逍遥 阅读(257) 评论(0) 推荐(0)
摘要: 读取CSV数据并写入txt文件 阅读全文
posted @ 2019-12-06 18:04 西北逍遥 阅读(1307) 评论(0) 推荐(0)
摘要: 获取图片 阅读全文
posted @ 2019-12-05 20:35 西北逍遥 阅读(859) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2019-12-04 21:29 西北逍遥 阅读(512) 评论(0) 推荐(0)
摘要: IfcColumn is a vertical structural member which often is aligned with a structural grid intersection. It represents a vertical, or nearly vertical, st 阅读全文
posted @ 2019-12-04 16:07 西北逍遥 阅读(440) 评论(0) 推荐(0)
摘要: Industry Foundation Classes IFC代表建筑信息建模BIM数据的开放规范,在建筑施工或设施管理项目的各个参与者之间交换和共享。IFC是国际openBIM标准。 IFC规范由数据模式(表示为EXPRESS模式规范和XML模式规范)和引用数据(表示为属性和数量定义的XML定义) 阅读全文
posted @ 2019-12-03 21:49 西北逍遥 阅读(1342) 评论(0) 推荐(0)
摘要: The IFC JAVA Toolbox can read IFC STEP files and IFCZIP files from any data source that implementsjava.io.InputStream (e.g. a local file from the file 阅读全文
posted @ 2019-12-02 15:26 西北逍遥 阅读(1461) 评论(0) 推荐(0)
摘要: IfcRoot is the most abstract and root class for all entity definitions that roots in the kernel or in subsequent layers of the IFC specification. It i 阅读全文
posted @ 2019-12-01 19:31 西北逍遥 阅读(334) 评论(0) 推荐(0)
摘要: IfcMaterial is a homogeneous or inhomogeneous substance that can be used to form elements (physical products or their components). IfcMaterial is the 阅读全文
posted @ 2019-11-30 18:41 西北逍遥 阅读(535) 评论(0) 推荐(0)
摘要: The IfcDirection provides a direction in two or three dimensional space depending on the number of DirectionRatio's provided. The IfcDirection does no 阅读全文
posted @ 2019-11-29 19:10 西北逍遥 阅读(533) 评论(0) 推荐(0)
摘要: The IfcAxis2Placement3D provides location and orientations to place items in a three-dimensional space. The attribute Axis defines the Z direction, Re 阅读全文
posted @ 2019-11-28 18:51 西北逍遥 阅读(444) 评论(0) 推荐(0)
摘要: IfcBeam属性和结构 阅读全文
posted @ 2019-11-27 19:04 西北逍遥 阅读(642) 评论(0) 推荐(0)
摘要: /* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield * * This library is open source and may be redistributed and/or modified under * the terms of the OpenSceneGraph Public License (OS 阅读全文
posted @ 2019-11-26 18:55 西北逍遥 阅读(704) 评论(0) 推荐(0)
摘要: 不规则形状的Ifc构件顶点坐标获取 今天有人问我,ifc构件的顶点坐标怎么获取,自己前年的时候写过类似的程序,但有点记不清了,最近一直用C++解析ifc,慎重起见,还是重新再写一次,java版本的获取方式如下,有空了再尝试一下C#版本的怎么写。 IfcWallStandardCase0.0 0.0 阅读全文
posted @ 2019-11-26 18:44 西北逍遥 阅读(950) 评论(0) 推荐(0)
摘要: BIM模型中有很多不规则的构件,在IFC中这些不规则的构件一般用顶点的形式表示,顶点坐标提取路径: IfcObject->IfcProductDefinitionShape->IfcShapeRepresentation->Item属性->IfcExtrudedAreaSolid->IfcArbit 阅读全文
posted @ 2019-11-26 15:30 西北逍遥 阅读(762) 评论(0) 推荐(0)
摘要: osg::Group源码 阅读全文
posted @ 2019-11-25 14:52 西北逍遥 阅读(481) 评论(0) 推荐(0)
摘要: 缩放图片 阅读全文
posted @ 2019-11-24 19:06 西北逍遥 阅读(386) 评论(0) 推荐(0)
摘要: void anasysData(QByteArray baRevDataParam) { int Datalen = sizeof(stuDevData); int Revlen = baRevDataParam.size(); int num = 0; int remainder = Revlen%Datalen;//求余 if (remainder != 0) { qDebug() << QS 阅读全文
posted @ 2019-11-23 18:39 西北逍遥 阅读(265) 评论(0) 推荐(0)
摘要: ass_s_ccp_ft:-108;ass_s_ccp_all:-108;ass_tag_ft:-105;ass_tag_all:-105;rept_port:9000;Q_value:0.005;R_value:0.01;fiter_do_track:1;print:1;Z_init:1.7;Z_ 阅读全文
posted @ 2019-11-22 17:11 西北逍遥 阅读(180) 评论(0) 推荐(0)
摘要: 暚光科技定位系统数据解析-java 阅读全文
posted @ 2019-11-22 17:08 西北逍遥 阅读(256) 评论(0) 推荐(0)
摘要: NetClient.h NetClient.cpp 阅读全文
posted @ 2019-11-21 18:24 西北逍遥 阅读(356) 评论(0) 推荐(0)
摘要: Qt QtXml读取xml文件内容 xml文件内容 输出 "Anchor" : "1" "50" "1789" "0""Anchor" : "2" "2970" "1840" "0""Anchor" : "3" "2940" "70" "0""Anchor" : "4& 阅读全文
posted @ 2019-11-20 14:41 西北逍遥 阅读(7053) 评论(0) 推荐(0)
摘要: QHBoxLayout *horizontalLayout_6 = new QHBoxLayout(main_ui.tab_5); horizontalLayout_6->setSpacing(6); horizontalLayout_6->setContentsMargins(11, 11, 11, 11); horizontalLayout_6->setObjectName(QString:: 阅读全文
posted @ 2019-11-19 15:21 西北逍遥 阅读(1083) 评论(0) 推荐(0)
上一页 1 ··· 70 71 72 73 74 75 76 77 78 ··· 96 下一页