Skip to content

Instantly share code, notes, and snippets.

@Sibicle
Created January 23, 2021 07:11
Show Gist options
  • Save Sibicle/f321bc6288e8d4a5e8a84896cd0b63f5 to your computer and use it in GitHub Desktop.
Save Sibicle/f321bc6288e8d4a5e8a84896cd0b63f5 to your computer and use it in GitHub Desktop.
weissmann gains?
vec3_t new_point = { .x = x, .y = y, .z = z };
cube_points[0] = new_point;
// vs
cube_points[0] = { .x = x, .y = y, .z = z };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment