objectarx

ObjectARX解压包内各文件代表什么?

邮差的信 提交于 2020-02-29 20:31:01
解压ObjectARX安装包后,里面有以下几个文件夹: (1)arxlabs:包含了 ObjectARX 的教程,和对应的示例文件。 (2)classmap:包含一个 DWG 图形,其中显示了 ObjectARX 类层次的结构。 (3)docs:包含所有的联机帮助文件,arxdoc.chm便是我们常用的帮助文档; (4)docsamps:包含在《ObjectARX 开发者向导》 (在 docs 文件夹中,为英文的资料)中所提到的源代码和说明文件。 (5) inc:包含 ObjectARX 的头文件。 (6)lib:包含 ObjectARX 的库文件。 (7)redistrib:包含一些动态链接库(DLL) ,其中一些可能是运行 ObjectARX 应用程序所必需的。 (8)samples:包含了许多 ObjectARX 应用程序的例子。 (9)utils:包含扩展 ObjectARX 的应用程序,例如用于边界表示的 brep 程序。 双击ObjectARX 2010\utils\ObjARXWiz\wizards.exe就可安装ObjectARX了。 来源: oschina 链接: https://my.oschina.net/u/2930533/blog/789244

AutoCAD Plugin Development by Example

丶灬走出姿态 提交于 2019-12-24 02:13:35
问题 I am interested in developing an AutoCAD plugin and am trying to understand the relationships between several different types of AutoCAD plugin files: Managed DLLs that ship with AutoCAD plugins ARX files that ship with AutoCAD plugins CUIX files that ship with AutoCAD plugins From what I can tell these three files are all inter-related and work together to initialize and load a plugin, I'm just not seeing the forest through the trees as to what information each file type contains, which

ObjectARX, RealDWG or Teigha? [closed]

淺唱寂寞╮ 提交于 2019-12-23 17:10:05
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed last year . I'm planning on developing a piece of software that reads & manipulates data in a .dwg file. Instead of writing my own library that handles the 'reading' of the data file, I've decided to use either RealDWG or Teigha, however I'm struggling to understand exactly how they work.

What is the order of load AutoCAD plugins?

我的梦境 提交于 2019-12-19 04:04:35
问题 There are few ways of automatic load applications - plugins when AutoCAD starts. I know those: startup suite - attached by GUI List item %appdata%....\support\zwcad2018.lsp ( I use ZWCAD, maybe in Acad, there is another path. The long time ago when I worked on Acad it was acad.lsp, but that was times before Windows UAC feature). *.mnl loaded while corresponding *.mnu is loaded ( old fashion way, but is ZWCAD possible) what about Acad? On-demand loading: HKEY_CURRENT_USER\Software\ZWSOFT\ZWCAD

ObjectARX SDK for c#

倖福魔咒の 提交于 2019-12-11 19:25:04
问题 For last two days I have looking for sample code with steps which may help me to understand the Autocad API. so I can use the code in C#. [CommandMethod("LISTGEn")] public static void ListEntities() { Document acDoc = Autodesk.AutoCAD.ApplicationServices.Core.Application.DocumentManager.MdiActiveDocument; Database acCurDb = acDoc.Database; using (Transaction acTrans = acCurDb.TransactionManager.StartTransaction()) { // Open the Block table record for read BlockTable acBlkTbl; acBlkTbl =

Interfacing AutoCAD with JAVA

橙三吉。 提交于 2019-12-04 01:29:00
问题 Any idea on interfacing with AutoCAD through a JAVA program. I am looking for a solution that can directly interface with an AutoCAD session (even start one), the way it works with the .NET extensions of AutoCAD. Or any way to work with ObjectARX through JAVA, definitely not writing a complete JNI wrapper over it. Added: We are looking for something in open-source. In case there is none, we are ready to create one in open-source if someone can lend a helping hand explaining how it can be done

Interfacing AutoCAD with JAVA

吃可爱长大的小学妹 提交于 2019-12-01 06:38:31
Any idea on interfacing with AutoCAD through a JAVA program. I am looking for a solution that can directly interface with an AutoCAD session (even start one), the way it works with the .NET extensions of AutoCAD. Or any way to work with ObjectARX through JAVA, definitely not writing a complete JNI wrapper over it. Added: We are looking for something in open-source. In case there is none, we are ready to create one in open-source if someone can lend a helping hand explaining how it can be done. We have taken a look at JNA and JaWin. JNA clubbed with JNI might help but is too ugly. JaWin on the

How can I improve the speed of .NET Plug-in Development?

无人久伴 提交于 2019-11-28 10:05:54
问题 I'm developing an AutoCAD add-in, which uses a .NET 4.6 assembly. I am finding the development process very frustrating; the API is very large and the documentation beyond getting started is all over the place and very hard to find. The only way to get anything done seems to be just prototyping functions in Visual Studio and seeing if it works. It then takes several minutes to load up AutoCAD and attach a debugger, which wrecks my prototyping workflow. It would be very handy if I could have