Skip to content

Commit ac93bc3

Browse files
committed
UPDATE COMMENT
1 parent 708c56c commit ac93bc3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

f32_vec2.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ var (
1818
F32Vec2AxisY = F32Vec2FromRaw(fix32.Zero, fix32.One)
1919
)
2020

21-
// F32Vec2 struct with signed 32.32 fixed point components.
21+
// F32Vec2 struct with signed 16.16 fixed point components.
2222
type F32Vec2 struct {
2323
RawX int32
2424
RawY int32

f32_vec3.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var (
2121
F32Vec3AxisZ = F32Vec3FromRaw(fix32.Zero, fix32.Zero, fix32.One)
2222
)
2323

24-
// F32Vec3 struct with signed 32.32 fixed point components.
24+
// F32Vec3 struct with signed 16.16 fixed point components.
2525
type F32Vec3 struct {
2626
RawX int32
2727
RawY int32

f64_vec4.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var (
1616
F64Vec4AxisW = F64Vec4FromRaw(fix64.Zero, fix64.Zero, fix64.Zero, fix64.One)
1717
)
1818

19-
// F64Vec4 struct with signed 16.16 fixed point components.
19+
// F64Vec4 struct with signed 32.32 fixed point components.
2020
type F64Vec4 struct {
2121
RawX int64
2222
RawY int64

0 commit comments

Comments
 (0)