Added editorconfig file for VS C++ code style formatting.

Applied C++ auto formatting.
This commit is contained in:
2022-08-08 00:20:45 -07:00
parent 870a796f39
commit 82a892cede
25 changed files with 2876 additions and 2480 deletions

View File

@@ -35,8 +35,8 @@ namespace kraken {
float SmoothStep(float a, float b, float t)
{
float d = (3.0f * t * t - 2.0f * t * t * t);
return a * (1.0f - d) + b * d;
float d = (3.0f * t * t - 2.0f * t * t * t);
return a * (1.0f - d) + b * d;
}
float Lerp(float a, float b, float t)