You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

74 lines
1.3 KiB

var mydata = {
nodes:[
{
id: 0,
name: "Node 1",
color: 0xff0000,
x: 7.5,
y: 0,
z: 5
},
{
id: 1,
name: "Node 1",
color: 0x00ff00,
x: 0,
y: 5,
z: -10
},
{
id: 2,
name: "Node 1",
color: 0x0000ff,
x: 0,
y: -5,
z: 10
},
{
id: 3,
name: "Node 1",
color: 0x00ffff,
x: 10,
y: -5,
z: -5
}
],
edges:[
{
id: 0,
name: "Edge 1",
from: 0,
to: 1
},
{
id: 1,
name: "Edge 2",
from: 1,
to: 2
},
{
id: 2,
name: "Edge 3",
from: 2,
to: 0
},
{
id: 3,
name: "Edge 4",
from: 3,
to: 0
},
{
id: 4,
name: "Edge 5",
from: 3,
to: 1
},
{
id: 5,
name: "Edge 6",
from: 3,
to: 2
}
]
}