Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bindings/bindings.nim
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ proc checkError(): bool =
result = lastError != nil

type
Vector2* = object
Vector2* {.bycopy.} = object
x*, y*: float32

Matrix3* = object
Matrix3* {.bycopy.} = object
values*: array[9, float32]

proc matrix3(): Matrix3 =
Expand Down
Loading