We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
To Reproduce
import IO; copy(|zip+testdata:///m3/snakes-and-ladders-project-source.zip!/|, |tmp:///snakes-and-ladders|, recursive=true) import lang::java::m3::Core; import lang::java::m3::AST; myModel = createM3FromDirectory(|tmp:///snakes-and-ladders/src|); import vis::Graphs;
Breadthfirst has a lot of whitespace between the layers:
graph({<x,"implements",y> | <x,y> <- myModel.implements} + {<x,"extends",y> | <x,y> <- myModel.extends}, layoutName=CytoLayoutName::breadthfirst())
Circle has enormous radius compared to the nodes:
graph({<x,"implements",y> | <x,y> <- myModel.implements} + {<x,"extends",y> | <x,y> <- myModel.extends}, layoutName=CytoLayoutName::circle())
Expected behavior
Screenshots
The text was updated successfully, but these errors were encountered:
8ea23ec
defaultCircleLayout()
defaultCoseLayout()
For example, spacingFactor is an option to both circleLayout and breadthfirstLayout:
spacingFactor
graph({<x,"implements",y> | <x,y> <- myModel.implements} + {<x,"extends",y> | <x,y> <- myModel.extends}, \layout=defaultCircleLayout(spacingFactor=.5))
graph({<x,"implements",y> | <x,y> <- myModel.implements} + {<x,"extends",y> | <x,y> <- myModel.extends}, \layout=defaultBreadthfirstLayout(spacingFactor=.8))
Sorry, something went wrong.
jurgenvinju
No branches or pull requests
Describe the bug
To Reproduce
Breadthfirst has a lot of whitespace between the layers:
Circle has enormous radius compared to the nodes:
Expected behavior
Screenshots
The text was updated successfully, but these errors were encountered: