I’m trying to learn CFrames, as I have pretty much never learnt them before (except for a couple of things like Conveyors with LookVector). But the Roblox Wiki is way too confusing and I don’t understand many things about CFrame’s, could anyone please explain what they are?
1 Like
A CFrame is a transformation matrix, which is used to describe both the position and rotation of an object in space. There’s quite a lot of benefits to using CFrames over changing Position and Orientation: certain operations are simply easier with matrices (converting a Vector3 to object space, for example) and CFrames use a rotation matrix rather than Euler angles, so they don’t suffer from the infamous Gimbal Lock.
1 Like
@wow13524 Wow thanks! I don’t know what a Gimbal Lock is though xD
@UniversalScripter Thank you as well! I will read on that Asap!