In this blog post, I am going to discuss one of the most important methods in pyautocad i.e. Add(). This method opens up doors for creating a number of document-based objects as per AutoCAD’s Object model. For a more comprehensive […]
In this blog post, I will discuss an error that occurs while automating tasks in AutoCAD using the pythoncom module.- The pythoncom module is a AutoCAD automatization module in Python. Also, I will provide a solution for the same. The […]
In one of my previous blog posts, I discussed how we can use lists and dictionaries for storing AutoCAD objects created. In this post I want to introduce some more efficient data structures that we can use for organizing AutoCAD […]
In my previous post I discussed and demonstrated how to check for intersecting AutoCAD objects with pyautocad in Python. In this post I want to do something similar yet different: I want to show how you can extend AutoCAD objects […]
In this blog post I will be discussing the IntersectWith method for dealing with intersecting objects in AutoCAD. The method can be used for identifying intersecting AutoCAD objects. It can also be used in combination with object extensions, i.e. when […]
Now that we have understood the basic usage of different pyautocad methods and objects from our previous blog posts we need to learn how to work with those more systematically and in an efficient way. This blog post brings you […]
While working with AutoCAD, sometimes we need to insert external objects such as images. That is why in this blog post we will discuss how to insert an image in a AutoCAD template using the pyautocad module. Setting up environment […]
In our previous blog posts, we have discussed how to create 2D and 3D objects and to play with their properties. Now, in this blog post, we are going to learn, how to hatch objects using pywin32 in the AutoCAD […]
In this blog post, we are going to look at how we can work with 3D mesh objects in AutoCAD using the pyautocad module. If we want, we can use the pywin32 module too to work with 3D mesh. Significance […]
In our last blog post we learned how to build the APoint constructor for drawing objects on AutoCAD using python. In continuation with the same, we will learn how to create the second major constructor i.e. aDouble in this blog […]
We have seen in many of our previous blog posts that, we need certain additional functions for creating objects. APoint is one such method we used with pyautocad while automatizing AutoCAD objects using python. In this blog post, we will […]
Considering the issues we face while working with the pyautocad module or while working with some of the functions provisioned by pyautocad I decided to write a blog post covering win32com, i.e. pywin32. This Python module provides an alternative approach […]
As mentioned by me in my previous blog post I will keeps discussing workflows and operations that can be implemented with the pywin32 module in Python. In this post I will show how you can delete AutoCAD objects with pywin32 […]
While working with AutoCAD, correct description is very important. In such cases, we have to add texts to our AutoCAD drawings. In this blog post we are going to discuss how to work with normal texts & multiline texts using […]
We have seen how to draw some of the basic objects, fetching their basic properties and some other features too in our previous blog posts from this pyautocad series. In this particular blog post, we will look at, how we […]