Skip to content

Commit

Permalink
Rewrite a method to be consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
tinchodias committed Dec 12, 2023
1 parent 9ca13f1 commit cbd6e8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Alexandrie-Cairo/AeCairoMatrix.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -448,8 +448,8 @@ AeCairoMatrix >> value: aPoint [
"Answer aPoint transformed by self."

| x y |
x := ByteArray new: 8.
y := ByteArray new: 8.
x := FFIFloat64 newBuffer.
y := FFIFloat64 newBuffer.
x doubleAt: 1 put: aPoint x.
y doubleAt: 1 put: aPoint y.
self valueOnX: x onY: y.
Expand Down

0 comments on commit cbd6e8b

Please sign in to comment.