Bläddra i källkod

follow the conventions 2

pull/5229/head
Jopestpe 4 dagar sedan
committed by GitHub
förälder
incheckning
8b31937dc8
Ingen känd nyckel hittad för denna signaturen i databasen GPG-nyckel ID: B5690EEEBB952194
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. +2
    -2
      examples/shapes/shapes_recursive_tree.c

+ 2
- 2
examples/shapes/shapes_recursive_tree.c Visa fil

@ -67,7 +67,7 @@ int main(void)
float theta = angle*DEG2RAD;
int maxBranches = (int)(powf(2, (int)(treeDepth)));
Branch branches[1024];
Branch branches[1024] = { 0 };
int count = 0;
Vector2 initialEnd = CalculateBranchEnd(start, 0.0f, length);
@ -78,7 +78,7 @@ int main(void)
Branch branch = branches[i];
if (branch.length < 2) continue;
float nextLength = branch.length * branchDecay;
float nextLength = branch.length*branchDecay;
if (count < maxBranches && nextLength >= 2)
{

Laddar…
Avbryt
Spara