Commit 6b3856df authored by Alexandre Delanoë's avatar Alexandre Delanoë

[MAP] fix coordinates.

parent 2a6b66f6
...@@ -223,8 +223,8 @@ convert (GraphData r) = SigmaGraphData {nodes, edges} ...@@ -223,8 +223,8 @@ convert (GraphData r) = SigmaGraphData {nodes, edges}
{ id : n.id_ { id : n.id_
, size : toNumber n.size , size : toNumber n.size
, label : n.label , label : n.label
, x : cos (toNumber i) , x : n.x -- cos (toNumber i)
, y : sin (toNumber i) , y : n.y -- sin (toNumber i)
, color : intColor $ cDef n.attributes , color : intColor $ cDef n.attributes
} }
where where
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment