Skip to content

Commit

Permalink
changed default random seed to 0 for layer
Browse files Browse the repository at this point in the history
  • Loading branch information
OliBomby committed Jul 31, 2022
1 parent 8e315a7 commit d3fc153
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public static TumourLayer GetDefaultLayer() {
TumourRotation = GetGraphState(0),
TumourParameter = GetGraphState(0),
TumourDistance = GetGraphState(100),
RandomSeed = new Random().Next()
RandomSeed = 0
};
return l;
}
Expand Down

0 comments on commit d3fc153

Please sign in to comment.