Skip to content
Aarik Pokras edited this page Oct 26, 2024 · 15 revisions

Warning

This documentation is no longer maintained. Please use this link to see the maintained docs.

Importing

Important: To make a line, you must import the etki.plot module separately.

Importing all modules (May cause some bugs)

To import ETkI, with etki in your working directory, use:

from etki import *

If it causes a bug, please make an issue.

Importing specific modules

Action Module
Make a shape (rectangle, path, etc.) etki.shp
Make a text label etki.txt
Make a line etki.plot

You must import these modules individually, e.g.:
If I was drawing a circle and a text label, I would do the following:

import etki.shp # For the circle
import etki.txt # For the label
Clone this wiki locally