-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated docs, readmes, docstrings, comments etc
- Loading branch information
1 parent
5b935cb
commit e9cd19e
Showing
21 changed files
with
561 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
+ mimic 1.1 ../modules/mimic | ||
+ mimic 1.2 ../modules/mimic | ||
MAYA_SHELF_PATH +:= shelves | ||
PYTHONPATH +:= scripts/extern |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Mimic | ||
# Mimic | Contributing | ||
|
||
### Contributing | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Mimic | ||
# Mimic Vocabulary | ||
|
||
### Vocabulary | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,42 @@ | ||
# Mimic | ||
# Mimic Analysis | ||
|
||
### Overview | ||
This is the analysis module of Mimic; it generally takes a program as animated in Maya, calculates the first, second, and third derivatives of the program (i.e. Velocity, Acceleration, and Jerk), and prepares a graphical representation of that data, along with the program itself. | ||
|
||
|
||
### Organization | ||
|
||
``` | ||
|-- scripts | ||
|-- analysis | ||
|-- analysis.py | ||
|-- analysis_utils.py | ||
|-- analysis_ui.py | ||
|-- analysis_ui_utils.py * | ||
|-- analysis_ui_config.py | ||
``` | ||
|
||
- `analysis.py` | ||
contains only a single, high-level function which takes a program generated | ||
by Mimic, and produces a graphical UI to interract with the corresponding data. | ||
|
||
- `analysis_utils.py` | ||
contains the majority of the utility functions used for manipulating program | ||
data, generating derivatives, etc. | ||
|
||
- `analysis_ui.py` | ||
configures and creates the Mimic Anaylsis user interface. | ||
|
||
- `analysis_ui_utils.py` | ||
contains custom UI classes used to create the Mimic analysis UI | ||
|
||
- `analysis__ui_config.py` | ||
contains a few global variables used to configure default options for the | ||
analysis UI when launched. | ||
|
||
|
||
### Dependencies | ||
|
||
The Analysis module is dependent on both PyQtGraph and NumPy. | ||
See [extern.md](mimic/scripts/extern.md) for more details about these modules | ||
|
||
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.