transform to pascal case

This commit is contained in:
2025-01-02 20:22:51 +01:00
parent 6d7a4c03d5
commit 4d3474bc18
3 changed files with 71 additions and 72 deletions

View File

@@ -30,15 +30,15 @@ private:
int canvasSize = 0;
Vector2 start = {0};
std::list<DrawArgs> draw_calls;
std::list<DrawArgs> drawCalls;
void drawBranch();
inline int get_num_of_branches(int dep);
inline Color get_start_color(DrawArgs &arg);
inline Color get_end_color(int dep, Color &start);
inline int get_start_size(DrawArgs &arg);
inline int get_end_size(DrawArgs &arg, int start);
inline float get_lenght(DrawArgs &arg);
inline float get_angle_var(DrawArgs &arg);
inline int getNumOfBranches(int dep);
inline Color getStartColor(DrawArgs &arg);
inline Color getEndColor(int dep, Color &start);
inline int getStartSize(DrawArgs &arg);
inline int getEndSize(DrawArgs &arg, int start);
inline float getLength(DrawArgs &arg);
inline float getAngleVar(DrawArgs &arg);
};