Skip to content

Commit

Permalink
Merge pull request #224 from ABRG-Models/chore/curvy_telly_has_floats…
Browse files Browse the repository at this point in the history
…_not_bools

Changes 4 variables from float to bool, making sense.
  • Loading branch information
sebjameswml authored Sep 26, 2024
2 parents e668772 + b5eb237 commit 6b17326
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions morph/CurvyTellyVisual.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ namespace morph {
unsigned long long int c_count = 0;
for (unsigned int ri = 0; ri < nrect; ++ri) {

float T_border = false;
float B_border = false;
float L_border = false;
float R_border = false;
bool T_border = false;
bool B_border = false;
bool L_border = false;
bool R_border = false;

// Use a single colour for each rect, even though rectangle's z
// positions are interpolated. Do the _colour_ scaling:
Expand Down

0 comments on commit 6b17326

Please sign in to comment.