Skip to content

Commit

Permalink
FIX: Point3D! always returns false from zero?, due to incomplete co…
Browse files Browse the repository at this point in the history
…py/paste change and dupe Point2D! case.
  • Loading branch information
greggirwin committed Feb 9, 2025
1 parent 17f43ad commit e0b9e5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/natives.reds
Original file line number Diff line number Diff line change
Expand Up @@ -1925,7 +1925,7 @@ natives: context [
pt: as red-point3D! i
all [pt/x = as-float32 0 pt/y = as-float32 0]
]
TYPE_POINT2D [
TYPE_POINT3D [
pt: as red-point3D! i
all [pt/x = as-float32 0 pt/y = as-float32 0 pt/z = as-float32 0]
]
Expand Down

0 comments on commit e0b9e5b

Please sign in to comment.