Skip to content

Commit

Permalink
Classes are drawn in blue and packages in black.
Browse files Browse the repository at this point in the history
The color of packages is used for their node type.
Blocks are used for classes and fields.
New settings for incremental tree maps.
  • Loading branch information
koschke committed Oct 8, 2023
1 parent 1b1dd23 commit cfcc4f7
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions Assets/StreamingAssets/mini-evolution/mini-evolution.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ NodeTypes : [
{
nodeType : "Class";
visualNodeAttributes : {
Shape : "Cylinders";
Shape : "Blocks";
IsRelevant : True;
MetricToLength : [
"Metric.Lines.LOC";
Expand All @@ -72,8 +72,8 @@ NodeTypes : [
ColorProperty : {
Property : "Type";
TypeColor : {
Red : 1.00000000;
Green : 1.00000000;
Red : 0.00000000;
Green : 0.00000000;
Blue : 1.00000000;
Alpha : 1.00000000;
};
Expand All @@ -100,19 +100,19 @@ NodeTypes : [
{
nodeType : "Package";
visualNodeAttributes : {
Shape : "Cylinders";
Shape : "Blocks";
IsRelevant : True;
MetricToLength : [
"0.001";
"0.001";
"0.001";
];
ColorProperty : {
Property : "Metric";
Property : "Type";
TypeColor : {
Red : 1.00000000;
Green : 1.00000000;
Blue : 1.00000000;
Red : 0.00000000;
Green : 0.00000000;
Blue : 0.00000000;
Alpha : 1.00000000;
};
ByLevel : True;
Expand All @@ -138,7 +138,7 @@ NodeTypes : [
{
nodeType : "Field";
visualNodeAttributes : {
Shape : "Cylinders";
Shape : "Blocks";
IsRelevant : True;
MetricToLength : [
"0.01";
Expand Down Expand Up @@ -177,6 +177,7 @@ NodeTypes : [
IgnoreSelfLoopsInLifting : False;
MaximalAntennaSegmentHeight : 0.50000000;
AntennaWidth : 0.10000000;
BaseAnimationDuration : 1.00000000;
MetricToColor : [
{
name : "Metric.Vcs2See.Commit.Lines_Added";
Expand Down Expand Up @@ -285,16 +286,24 @@ BoardSettings : {
};
};
NodeLayout : {
NodeLayout : "CirclePacking";
NodeLayout : "Treemap";
LayoutPath : {
Root : "AssetsFolder";
RelativePath : "";
AbsolutePath : "";
};
IncrementalTreeMap : {
LocalMovesDepth : 3;
LocalMovesBranchingLimit : 4;
PNorm : "P2Euclidean";
GradientDescentPrecision : -4;
Padding : 5.00000000;
};
};
EdgeLayout : {
EdgeLayout : "Bundling";
AnimationKind : "Buildup";
AnimateInnerEdges : True;
EdgeWidth : 0.01000000;
EdgesAboveBlocks : True;
Tension : 0.85000000;
Expand Down

0 comments on commit cfcc4f7

Please sign in to comment.