Category: Autocad .Net API
-
Jigging with SHIFT, CTRL and Mouse Wheel Functionality (AutoCAD .net API)
Any AutoCAD programmer knows that things which an algorithm may take a million years and infinite computational power to do can sometimes be easily done by a human being instantly. In the same way it is sometimes much easier to give a human being the ability to choose: then you can get an optimum result…
-
Offsetting Truss Lines from Intersecting Fire Collars (Bubble Deck + Video Demo)
The effective point of this blog is to demonstrate the use of a jig – not just any old jig – but a jig which accepts user inputs using the CTRL + SHIFT + MOUSE-WHEEL (up or down) to change the jig’s behaviour. When the jig is finished running, everything returns back to normal. This…
-
Thoughts About the AutoCAD API (AutoCAD .net API)
I got thinking about the AutoCAD APIs (ObjectARX/.NET) – they’re virtually the same – the .NET API is basically a wrapper to the ObjectARX API (with some differences). If you want the full power of low level calls then you gotta go with ObjectARX. But then using .NET comes with a very powerful benefit…
-
WPF User Interface for Precast Panel Comparison
This utilises WPF to compare panels, isolate changes and make better decisions. See below for a demonstration: WPF – Eliminating Errors using Cross Checking from Tek1 on Vimeo.
-
A Poor Man’s Line Jig (well, there’s actually no jigging here) – (AutoCAD .net API)
I wanted to implement a jig for drawing a Line – but strictly speaking I didn’t want the line itself – I wanted its two points, yet I wanted all the features that come with jigging: snaps, polar tracking, and a nice line leading from the base point to the cursor, which shows…
-
Steps to Mastery of the API (AutoCAD .net API)
I’ve compiled a list. There’s actually quite a bit involved. I don’t think you can get away with simply not knowing anything about unamanged ObjectARX world. Here is the list below – which I will update. If you see any notable topics which I have missed, please feel free to add a note and I…
-
Finding the Point on a Curve Which is the Closest Point to Another Curve? (AutoCAD .net API)
The Genesis of this problem This is a tricky little problem and I could not find a solution on the forums. So I resolved, upon discovering the solution, to oblige posterity and the public, to publish my findings. Specific Notes about this problem Now the following code has been generalised to the specific case of…
-
Point Monitor Hello World (AutoCAD .net API)
This is largely a replication of what is contained in the documentation without the extraneous (and extremely confusing) intertwining of WPF/WinForms functionality. Personally I believe when engaging in hello world functions that they should be as simple as possible. I have done as much here. In time, I will add further details to provide you…