-
Notifications
You must be signed in to change notification settings - Fork 32
Feature/partition configs #56
New issue
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
Changes from all commits
574635d
184e8ef
460aa21
daad44e
e3e40b6
3806454
827b54c
5f41ccb
d7c6e33
8971720
d5f9873
482c665
caade12
7ae4f63
169a111
134637f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,50 +9,37 @@ renderer: | |
| nodes: {scale: 0.40, color: {type: LabelColorAdapter}, alpha: 0.8, use_sphere: false} | ||
| text: {draw: true, collapse: true, adapter: {type: LabelTextAdapter}, height: 0.5, scale: 0.45} | ||
| bounding_boxes: {draw: true, collapse: true, scale: 0.05, edge_scale: 0.05, alpha: 0.9, edge_break_ratio: 0.5} | ||
| edges: {interlayer_use_source: true, interlayer_scale: 0.08, interlayer_alpha: 0.5} | ||
| 3: | ||
| z_offset_scale: 3.0 | ||
| visualize: true | ||
| nodes: {scale: 0.2, color: {type: ParentColorAdapter, colormap: {palette: colorbrewer}}, alpha: 0.9, use_sphere: true} | ||
| edges: | ||
| scale: 0.01 | ||
| alpha: 0.5 | ||
| color: {type: UniformEdgeColorAdapter} | ||
| interlayer_use_source: false | ||
| interlayer_scale: 0.08 | ||
| interlayer_alpha: 0.4 | ||
| interlayer_insertion_skip: 0 | ||
| edges: {scale: 0.01, alpha: 0.5, color: {type: UniformEdgeColorAdapter}} | ||
| 4: | ||
| z_offset_scale: 4.2 | ||
| visualize: true | ||
| nodes: {scale: 0.6, color: {type: IdColorAdapter, colormap: {palette: colorbrewer}}, alpha: 0.8, use_sphere: false} | ||
| text: {draw: true, height: 1.25, scale: 1.0} | ||
| edges: | ||
| scale: 0.1 | ||
| alpha: 0.2 | ||
| color: {type: UniformEdgeColorAdapter} | ||
| interlayer_use_source: true | ||
| interlayer_scale: 0.08 | ||
| interlayer_alpha: 0.4 | ||
| interlayer_insertion_skip: 0 | ||
| partitions: | ||
| 2: | ||
| edges: {scale: 0.1, alpha: 0.2, color: {type: UniformEdgeColorAdapter}} | ||
| 2p*: | ||
| z_offset_scale: 0.0 | ||
| visualize: true | ||
| nodes: {scale: 0.15, alpha: 0.9, use_sphere: false, color: {type: PartitionColorAdapter}} | ||
| edges: {scale: 0.05, alpha: 0.9, draw_interlayer: false} | ||
| text: {draw_layer: true, height: 0.9, scale: 0.8} | ||
| 3: | ||
| 3p1: | ||
| z_offset_scale: 3.0 | ||
| visualize: true | ||
| nodes: {scale: 0.2, color: {type: LabelColorAdapter}, alpha: 0.9, use_sphere: true} | ||
| boundaries: {draw: true, collapse: false, wireframe_scale: 0.1, use_node_color: true, alpha: 1.0} | ||
| edges: {scale: 0.01, alpha: 0.5, color: {type: UniformEdgeColorAdapter}} | ||
| 3p2: | ||
| z_offset_scale: 3.0 | ||
| visualize: true | ||
| nodes: {scale: 0.2, color: {type: LabelColorAdapter}, alpha: 0.9, use_sphere: true} | ||
| boundaries: {draw: true, collapse: false, wireframe_scale: 0.1, use_node_color: true, alpha: 1.0} | ||
| text: {draw: true, collapse: true, adapter: {type: IdTextAdapter}, height: 0.5, scale: 0.45} | ||
| edges: | ||
| scale: 0.1 | ||
| alpha: 0.8 | ||
| color: {type: TraversabilityEdgeColorAdapter} | ||
| interlayer_use_source: false | ||
| interlayer_scale: 0.08 | ||
| interlayer_alpha: 0.4 | ||
| interlayer_insertion_skip: 0 | ||
| text: {draw: false, collapse: true, adapter: {type: IdTextAdapter}, height: 0.5, scale: 0.45} | ||
| edges: {scale: 0.1, alpha: 0.8, color: {type: TraversabilityEdgeColorAdapter}} | ||
| interlayer_edges: | ||
| - {from: 3*, to: 2p*, draw: false} | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think that would make more sense in the final version (that gets put in spark-dsg), but I think that would lead to confusing behavior for configs that hadn't been updated yet at the moment (e.g., |
||
| - {from: 3*, to: 2, use_child_color: true, scale: 0.08, alpha: 0.5} | ||
| - {from: 4, to: 3*, scale: 0.08, alpha: 0.4} | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!