consider the dot input attached with dimen=2
layout positions node in 2 dimensions
$ sfdp < bugreport.dot | grep aaa
aaa [pos="126.63,137.8", width="0.75", height="0.52778"];
changing to dimen=3
$ sfdp < bugreport.dot | grep aaa
aaa [pos="28,131.18,-404.65", width="0.75", height="0.52778"];
but changing to 4 (or higher) pos continues to only be 3 dimensional
$ sfdp < bugreport.dot | grep aaa
aaa [pos="28.053,20,-254.94", width="0.75", height="0.52778"];
graph { dimen=4; overlap=prism;
"aaa" -- "bbb" [penwidth="0"]
"ccc" -- "bbb" [penwidth="0"]
"ddd" -- "bbb" [penwidth="0"]
"eee" -- "fff" [penwidth="0"]
"ggg" -- "fff" [penwidth="0"]
}
Owner: erg