Metadata-Version: 2.1
Name: pyacad
Version: 0.0.2
Summary: A package aimed to simplfy coding of Activex Automation Module of AutoCAD, based on pywin32 library.
Home-page: https://github.com/AxelTAG/pyacad.git
Author: Kevin Axel Tagliaferri
Author-email: kevinaxeltagliaferri@hotmail.com
Description-Content-Type: text/markdown
License-File: LICENSE

# pyacad

A package aimed to simplfy coding of Activex Automation Module of AutoCAD, based on pywin32 library.


## Features

- Uses of COM (Componnent Object Model of Microsoft) for manipulate AutoCAD application with Python.
- Python Autocad class for manipulate.

## Usage

```
from pyacad import Autocad, APoint

# Create a line in the active document model space.
acad = Autocad()
p0 = APoint(1, 1)
p1 = APoint(2, 3)
acad.model.AddLine(p0(), p1())

# Zoom the line by extents.
acad.app.ZoomExtents()
```
