Skip to content

Commit

Permalink
Freeze variation 15
Browse files Browse the repository at this point in the history
  • Loading branch information
iuriguilherme committed Apr 17, 2023
1 parent 2cbd349 commit 546ce13
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion project/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const fxhashDecimal = base58toDecimal(fxhashTrunc);
const lastVariation = 50;
//~ const featureVariation = fxHashToVariation(fxhashDecimal, lastVariation, 1);
//~ const featureVariation = 0;
const featureVariation = 14;
const featureVariation = 15;
const BUFF_SIZE = 1080;
const BUFF_WID_MOD = 1;
const BUFF_HEI_MOD = 1;
Expand Down
6 changes: 5 additions & 1 deletion project/src/params.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ export function configureVariation(p, variation) {
};
break;
case -15:
// This one is my personal favorite
// This one was my personal favorite
params = {
"x": "a",
"y": "a",
Expand Down Expand Up @@ -503,6 +503,7 @@ export function configureVariation(p, variation) {
};
break;
case 13:
// https://www.fxhash.xyz/generative/26497
params = {
"x": "a * 2",
"y": "a * 3",
Expand All @@ -519,6 +520,7 @@ export function configureVariation(p, variation) {
break;
case 14:
// This one is my personal favorite
// https://www.fxhash.xyz/generative/26599
params = {
"x": "a",
"y": "a",
Expand All @@ -540,6 +542,8 @@ export function configureVariation(p, variation) {
"stop": "b * f",
"drawFunction": "7",
"drawInnerFunction": "6",
"maxIter": "300",
"maxSpir": "45",
};
break;
case 16:
Expand Down

0 comments on commit 546ce13

Please sign in to comment.