-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from theTaikun/development
Development
- Loading branch information
Showing
7 changed files
with
254 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,47 @@ | ||
# PlotRock | ||
3D Graphing Addon for Blender | ||
# PlotRock - 3D Graphing Addon for Blender | ||
|
||
Plotrock is a [Blender](http://www.blender.org) plugin that allows users to create line graphs, | ||
using data from their tables and spreadsheets. | ||
|
||
## Features | ||
* Import files from Excel, LibreOffice, Google Sheets, or other similar spreadsheet programs. | ||
* Ability to edit CSV within Blender and regenerate plot. | ||
* Ability to edit .csv file within Blender and regenerate plot. | ||
* Handy sidemenu that allows plot customization. | ||
* Utilize all Blender tools such as materials, lighting, and animated cameras. | ||
|
||
https://user-images.githubusercontent.com/43371347/129456528-502482cb-86b4-4a55-a419-97ae086831ed.mp4 | ||
|
||
|
||
## Install | ||
1. Find the latest [release](https://github.com/theTaikun/plotrock/releases). | ||
2. Download the `Source Code` zip. | ||
3. In Blender, navigate to `Edit` => `Preferences` => `Add-Ons`. | ||
4. Click `Install` and select the dowloaded .zip. | ||
5. Now that the addon is installed, click its checkbox to enable it. | ||
|
||
## Usage | ||
_PlotRock side menu can be accessed by pressing the N key in the 3D Vieport._ | ||
|
||
1. Attain data, either from exporting spreadsheet data to .csv, or procuring a .csv file from elsewhere. | ||
2. Import data either from `File`=>`Import`=>`Import CSV for plotting` or from the PlotRock side menu. | ||
1. On the right-hand side of the import menu, double check import settings. By default, imports file with headers, and comma seperated. | ||
3. To edit the data: | ||
1. Open a Text Editor window, and select the imported file. | ||
2. Edit the plot data as needed | ||
3. Click `Update Plot` from the PlotRock side menu. | ||
4. To customize the shape of the plot, select it, and adjust the sliders in the RockPlot menu. | ||
5. Finalize by adding camera(s) and lighting, to taste. | ||
|
||
## Limitations | ||
RockPlot is still a work in progress, | ||
and as such, | ||
has some limitations. | ||
|
||
* Only handles files formatted as CSV. | ||
* ~~CSVs must actually use commas. Other deliminators not yet supported.~~ | ||
* ~~CSVs must actually use commas. Other deliminators not yet supported.~~ Can use either comma or semicolon delimiters. | ||
* Data within CSV has some requirements: | ||
* 2D data, meaning two column. Must be only one Y value for each X value. | ||
* Both X and Y values must be a number. | ||
* Files must have the extension `.csv` or `.txt`. | ||
* ~~Headers not yet supported.~~ | ||
* Only one plot per axis. | ||
* Currently only creates line graphs. |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
1,1 | ||
2,2.7 | ||
3,3 | ||
4,3 | ||
5,6 |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
day,value | ||
1,1 | ||
2,2.7 | ||
3,3 | ||
4,3 | ||
5,6 |
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