摘要:
20240402 今天很神奇的遇到了 Transaction trnas = db.transmanager.startTransaction()时报错 后来发现是反复递归造成的trans启动实例太多造成的 20240410 进行中望cad二次开发的时候,有切换文档Document的需求,会报错ei 阅读全文
摘要:
//设置加载文件的时候不弹窗 Application.SetSystemVariable("SECURELOAD", 0); //加载arx或者dbx文件 dynamic acadApplication = Application.AcadApplication; acadApplication.L 阅读全文
摘要:
首先在CommandClass的构造器里面写上 AppDomain.CurrentDomain.AssemblyResolve += CurrentDomain_AssemblyResolve; 然后写上方法的具体内容 CurrentDomain_AssemblyResolve; public As 阅读全文
摘要:
#pragma once #include <stdio.h> #include <stdlib.h> #include <iostream> #include <tiny_gltf.h> #ifdef EXPORT_API #define EXPORT_DRACO __declspec(dllex 阅读全文
摘要:
public void MyTxtExp() { AcadDocument acadDocument = doc.GetAcadDocument() as AcadDocument; AcadApplication acadApplication = Application.AcadApplicat 阅读全文
摘要:
原版本涉及到坐标系变化和矩阵变换,在对原版的思路掌握后,特写一个精简版,帮助大家理解。 function zoom(movement, feature) { const longitude = Cesium.Math.toRadians(feature.getProperty("Longitude" 阅读全文
摘要:
初学cesium,对cesium中的camera转换感到狠迷惑 对于屏幕坐标系统(二维)、笛卡尔空间直角坐标系统(WGS84)、地理坐标系统(经纬度坐标)的具体内容不再赘述见该博客cesium中的坐标系统与转换 对于camera的heading pitch roll的具体内容不再赘述,见博客Cesi 阅读全文
摘要:
第一步 输入对应的地址,并点击创建并推送 第二步:添加文件、修改文件、删除文件 点击添加修改项,并推送数据库 阅读全文
摘要:
Revit API 帮助文件 RevitAPI.chm 规定了两个输入配置文件 bottomProfile 和 topProfile 的以下要求: 类型:Autodesk.Revit.DB.SweepProfile。 它应该只包含一个曲线环。 输入配置文件必须位于一个平面中。 经过一番研究和讨论,我 阅读全文
摘要:
课程说明 本课程将分享同济大学建筑设计研究院(集团)有限公司(以下简称TJAD)上海建筑数字建造工程技术研究中心(以下简称上海建筑数字中心)打造Revit插件产品的经验,包括完整的需求,软件架构、开发、第三方程序集的使用、测试及打包过程。 同时介绍Revit开发在BIM项目中是如何逐步迭代:包括与设 阅读全文