Metadata-Version: 2.1
Name: mayatk
Version: 0.6.2
Summary: *mayattk is a collection of backend utilities for Autodesk Maya.*
Home-page: https://github.com/m3trik/mayatk
Author: Ryan Simpson
Author-email: m3trik@outlook.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

### MAYATK (Maya Toolkit)

---
<!-- short_description_start -->
*mayattk is a collection of backend utilities for Autodesk Maya.*
<!-- short_description_end -->

### Installation:

###### 

To install:
Add the `mayatk` folder to a directory on your python path, or
install via pip in a command line window using:
```
python -m pip install mayatk
```

### Example use-case:
###### Import the class `Node` from the package.
###### As the name suggests, the class `Node` holds the package's node related functions.
```python
from mayatk import Node
Node.is_locator(<obj>)
# Returns: bool
```
###### You can also import a function directly.
```python
from mayatk import is_group
is_group(<obj>)
# Returns: bool
```

```python
from mayatk import get_bounding_box
get_bounding_box(<obj>, 'centroid|size') 
# Returns: tuple: the combined bounding box center and size.
# ex. ((-0.02406523456116849, -0.8100277092487823, 0.0), (3.3830200057098523, 4.0155477063595555, 3.40770764056194))
```
