Mistake on Dev Wiki Article: CFrame Math Operations

Hello,

I believe that I have found a mistake.

The article link is:
https://www.robloxdev.com/articles/CFrame-Math-Operations

This section of code appears in the fourth embedded code on that page.

local ax, ay, az, a11, a12, a13, a21, a22, a23, a31, a32, a33 = a:components()
local bx, by, bz, b11, b12, b13, b21, b22, b23, b31, b32, b33 = a:components()

I think the second line should be:

b:components()

and not:

a:components()

Is this true? I wanted to tell you so it could be updated. Sorry if I am wrong.

Thank you!

2 Likes

Good spot - Fixed. Thanks for the report.

1 Like