Skip to content

Instantly share code, notes, and snippets.

View harolro's full-sized avatar

harolro

  • Joined May 27, 2026
View GitHub Profile
@harolro
harolro / simpleObj.odin
Created May 27, 2026 22:43
Simple OBJ Loader in Odin
package obj
import "core:fmt"
import "core:strconv"
import "core:os"
import "core:strings"
vec3 :: struct{
x,y,z:f32
}