上一页 1 ··· 68 69 70 71 72 73 74 75 76 ··· 94 下一页
摘要: C++ vector C++, test1 test2 test3 test4max_size:461168601842738790size:5capacity:6C++, test3 test2 TEST test1 Javasize:6capacity:6size:4capacity:4请按任意 阅读全文
posted @ 2019-12-15 20:08 西北逍遥 阅读(551) 评论(0) 推荐(0) 编辑
摘要: myprint.hpp test.cpp 3 7 9 5 2 0 0 0 0 03 7 9 5 2 0 0 0 555 666sum:1247 -3 -7 -9 -5 -2 0 0 0 -555 -666请按任意键继续. . . 阅读全文
posted @ 2019-12-14 20:12 西北逍遥 阅读(540) 评论(0) 推荐(0) 编辑
摘要: 4 8 400010100010000000011010000000000000000000000000000000000000000000000000001000001101000000000000000000000请按任意键继续. . . 阅读全文
posted @ 2019-12-13 17:17 西北逍遥 阅读(1083) 评论(0) 推荐(0) 编辑
摘要: 本质:引用是别名,指针是地址,具体的: ①从现象上看,指针在运行时可改变其所指向的值,而引用一旦和某个对象绑定后就不在改变。这句话可以这样理解:指针可以被重新赋值以指向另一个不同的对象。但是引用总指向在初始化时被指定的对象,以后不能改变,但是指定的对象内容可以改变。 ②从内存上分配看,程序为指针变量 阅读全文
posted @ 2019-12-13 16:27 西北逍遥 阅读(915) 评论(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 西北逍遥 阅读(208) 评论(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 西北逍遥 阅读(170) 评论(0) 推荐(0) 编辑
摘要: array 0 test11 test2234 阅读全文
posted @ 2019-12-10 16:33 西北逍遥 阅读(276) 评论(0) 推荐(0) 编辑
摘要: IFC1.0中的新实体 阅读全文
posted @ 2019-12-09 19:30 西北逍遥 阅读(279) 评论(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 西北逍遥 阅读(223) 评论(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 西北逍遥 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 读取CSV数据并写入txt文件 阅读全文
posted @ 2019-12-06 18:04 西北逍遥 阅读(1275) 评论(0) 推荐(0) 编辑
摘要: 获取图片 阅读全文
posted @ 2019-12-05 20:35 西北逍遥 阅读(815) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-12-04 21:29 西北逍遥 阅读(497) 评论(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 西北逍遥 阅读(411) 评论(0) 推荐(0) 编辑
摘要: Industry Foundation Classes IFC代表建筑信息建模BIM数据的开放规范,在建筑施工或设施管理项目的各个参与者之间交换和共享。IFC是国际openBIM标准。 IFC规范由数据模式(表示为EXPRESS模式规范和XML模式规范)和引用数据(表示为属性和数量定义的XML定义) 阅读全文
posted @ 2019-12-03 21:49 西北逍遥 阅读(1275) 评论(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 西北逍遥 阅读(1414) 评论(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 西北逍遥 阅读(311) 评论(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 西北逍遥 阅读(502) 评论(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 西北逍遥 阅读(503) 评论(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 西北逍遥 阅读(411) 评论(0) 推荐(0) 编辑
摘要: IfcBeam属性和结构 阅读全文
posted @ 2019-11-27 19:04 西北逍遥 阅读(595) 评论(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 西北逍遥 阅读(658) 评论(0) 推荐(0) 编辑
摘要: 不规则形状的Ifc构件顶点坐标获取 今天有人问我,ifc构件的顶点坐标怎么获取,自己前年的时候写过类似的程序,但有点记不清了,最近一直用C++解析ifc,慎重起见,还是重新再写一次,java版本的获取方式如下,有空了再尝试一下C#版本的怎么写。 IfcWallStandardCase0.0 0.0 阅读全文
posted @ 2019-11-26 18:44 西北逍遥 阅读(916) 评论(0) 推荐(0) 编辑
摘要: BIM模型中有很多不规则的构件,在IFC中这些不规则的构件一般用顶点的形式表示,顶点坐标提取路径: IfcObject->IfcProductDefinitionShape->IfcShapeRepresentation->Item属性->IfcExtrudedAreaSolid->IfcArbit 阅读全文
posted @ 2019-11-26 15:30 西北逍遥 阅读(720) 评论(0) 推荐(0) 编辑
摘要: osg::Group源码 阅读全文
posted @ 2019-11-25 14:52 西北逍遥 阅读(455) 评论(0) 推荐(0) 编辑
摘要: 缩放图片 阅读全文
posted @ 2019-11-24 19:06 西北逍遥 阅读(372) 评论(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 西北逍遥 阅读(257) 评论(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 西北逍遥 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 暚光科技定位系统数据解析-java 阅读全文
posted @ 2019-11-22 17:08 西北逍遥 阅读(238) 评论(0) 推荐(0) 编辑
摘要: NetClient.h NetClient.cpp 阅读全文
posted @ 2019-11-21 18:24 西北逍遥 阅读(339) 评论(0) 推荐(0) 编辑
上一页 1 ··· 68 69 70 71 72 73 74 75 76 ··· 94 下一页