trying to find a consistent and C++1x styled graph representation

This commit is contained in:
Hartmut Seichter 2019-01-05 10:13:16 +01:00
parent f6c7f1adbb
commit 2e151b87c6
13 changed files with 528 additions and 31 deletions

View file

@ -39,12 +39,10 @@ local aa = pw.axisangle.new(v1,0.707)
print("aa.axis",aa.axis.x,aa.axis.y,aa.axis.z)
print("aa.angle",aa.angle)
local n_1 = pw.node.new("node-1")
local n_2 = pw.node.new("node-2")
local n_1 = pw.node.create()
n_1.name = "root"
print("node 1: ", n_1.name)
print("node 2: ", n_2.name)
--print(pw.node.create())