Skip to content

Commit 3908adc

Browse files
committed
2 parents 57c09ac + c51bcc9 commit 3908adc

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ Graph creator is a tool designed to help graph theorists input graphs from pre-e
44

55
## Supported Functionality
66
#### Multiline Adjacency Lists
7-
Graph Creator can output a user made graph as a multi-line adjacency list, as used by [NetworkX](https://networkx.github.io/).
7+
Graph Creator can output a user made graph as a multi-line adjacency list, as used by [NetworkX](https://networkx.github.io/).
8+
9+
#### Adjacency Matrices
10+
Graphs entered into graph creator can be output as a adjacency matrix represented by a 2D list.
811

912
#### Vertex Position List
1013
Graph Creator can output a JSON file with (x, y) coordinates of each user added vertex.
@@ -19,6 +22,13 @@ To install Graph creator first git clone this repo:
1922
git clone https://github.com/Jabbath/Graph-Creator
2023
```
2124

25+
Now, cd to the Graph-Creator director and run npm install to install the dependencies:
26+
27+
```
28+
cd Graph-Creator
29+
npm install
30+
```
31+
2232
Then, download the latest version of [NW.js (node-webkit)](https://nwjs.io/), and simply drag and drop the files from the repo into the base directory of NW.js. To run the application, run nw.
2333

2434
## Usage

package.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
{
2-
"name": "Graph Creator",
2+
"name": "graph-creator",
33
"version": "0.2.2",
44
"main": "index.html",
55
"window": {
66
"height": 1024,
77
"width": 1024
88
},
9-
"web_accessible_resources": ["maps/map.jpg"]
9+
"description": "an app to make graphs from images",
10+
"readme": "README.md",
11+
"repository": {
12+
"type": "git",
13+
"url": "https://github.com/Jabbath/Graph-Creator"
14+
},
15+
"license": "MIT",
16+
"dependencies": {
17+
"nw-dialog": ">=1.0.7"
18+
}
1019
}

0 commit comments

Comments
 (0)