CFrame: Difference between revisions
>Samacado Rejected the last text change (by JulienDethurens) and restored revision 48606 by Crazypotato4: please check your page before uploading it - you broke several links. |
>JulienDethurens Instead of rejecting it because of ONE broken link, you could have just fixed the broken link... |
||
Line 5: | Line 5: | ||
All that really means is that a CFrame is where an object is, and how it's rotated. It uses a [[Vector3]] to specify the position, and a grid of numbers to specify its orientation.}}--> | All that really means is that a CFrame is where an object is, and how it's rotated. It uses a [[Vector3]] to specify the position, and a grid of numbers to specify its orientation.}}--> | ||
For example, in a | For example, in a place with a few bricks scattered about, put this in the [[Command Bar|command line]]: | ||
The [[ | The [[output]] will show something like this, though your numbers will be different if you place the brick in a different location: | ||
{{Code and output | |||
|code=print(Workspace.Part.CFrame) | |||
|output=0, 3, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1 | |||
}} | |||
The first 3 numbers from all that is the 3D position of an object, in this case {{Vector3|9|7|5}}. The last 9 numbers make up a Rotation Matrix which describes which way the object is rotated, in this case {{RotationMatrix/small|0|0|1|0|1|0|-1|0|0}}. | The first 3 numbers from all that is the 3D position of an object, in this case {{Vector3|9|7|5}}. The last 9 numbers make up a Rotation Matrix which describes which way the object is rotated, in this case {{RotationMatrix/small|0|0|1|0|1|0|-1|0|0}}. | ||
Line 21: | Line 24: | ||
In the Command Line, type in this bit here and hit enter: | In the Command Line, type in this bit here and hit enter: | ||
<code lua>Workspace.Part.CFrame = CFrame.new(0, 50, 0)</code> | |||
You should see that the brick moved up a good distance, you may need to move the camera to see it. What you just did is change where the brick is, by changing it's CFrame. As you should know from the [[ | You should see that the brick moved up a good distance, you may need to move the camera to see it. What you just did is change where the brick is, by changing it's CFrame. As you should know from the [[absolute beginner's guide to scripting]], you changed the Part's CFrame property, or value by using the equal sign. You set Part.CFrame to a new CFrame, by using the CFrame.new ''constructor.'' You ''constructed'' a new CFrame using 3 different values. This told the Lua engine to set the brick's CFrame to 0, 50, 0, which set it's position to {{Vector3|0|50|0}}, making the brick move to that position. | ||
{|style="text-align:center; {{border-radius|4px}}; background-color: #ffdddd; border: 2px solid; border-color: #ff0000 #aa0000 #aa0000 #ff0000; margin: 6px 10px; padding: 2px;" | {|style="text-align:center; {{border-radius|4px}}; background-color: #ffdddd; border: 2px solid; border-color: #ff0000 #aa0000 #aa0000 #ff0000; margin: 6px 10px; padding: 2px;" | ||
Line 41: | Line 44: | ||
At the bottom of this page you'll see a few tables that give you the different constructors for CFrame. You can see a bunch of new() commands, which all have different arguments inside of the [[function]]. This is because there are several different ways to create a CFrame. You can use just a position, like in the above example, or you can use the more complex ones. | At the bottom of this page you'll see a few tables that give you the different constructors for CFrame. You can see a bunch of new() commands, which all have different arguments inside of the [[function]]. This is because there are several different ways to create a CFrame. You can use just a position, like in the above example, or you can use the more complex ones. | ||
In the case of rotating bricks the popular option is to actually use one of the [[ | In the case of rotating bricks the popular option is to actually use one of the [[operator]]s instead of a Constructor. | ||
{|style="text-align:center; {{border-radius|4px}}; background-color: #ffdddd; border: 2px solid; border-color: #ff0000 #aa0000 #aa0000 #ff0000; margin: 6px 10px; padding: 2px;" | {|style="text-align:center; {{border-radius|4px}}; background-color: #ffdddd; border: 2px solid; border-color: #ff0000 #aa0000 #aa0000 #ff0000; margin: 6px 10px; padding: 2px;" | ||
Line 52: | Line 55: | ||
|} | |} | ||
What this does is take the object you want to rotate; creates a CFrame from it's current location; and uses the <tt>*</tt> [[ | What this does is take the object you want to rotate; creates a CFrame from it's current location; and uses the <tt>*</tt> [[operator]] to compose the rotation CFrame, which you created with <tt>CFrame.Angles</tt> | ||
The CFrame.Angles ''constructor'' creates a CFrame that is just rotations. In the '''Moving Bricks''' part we created one that was just a position. Bricks use the CFrame for both rotation and position, which is what you create when you use the * operator. It takes the position CFrame and the Rotation CFrame, and combines them. | The CFrame.Angles ''constructor'' creates a CFrame that is just rotations. In the '''Moving Bricks''' part we created one that was just a position. Bricks use the CFrame for both rotation and position, which is what you create when you use the * operator. It takes the position CFrame and the Rotation CFrame, and combines them. | ||
Line 133: | Line 136: | ||
== Operators == | == Operators == | ||
These [[ | These [[operators]] are used for combining CFrames and Vector3s. | ||
{| class="wikitable" | {| class="wikitable" |
Revision as of 21:56, 21 January 2012
CFrame stands for Coordinate Frame. All objects inherited from BasePart have CFrame properties. These define where an object is, and its orientation (how it is rotated). The Position is part of a CFrame, along with a rotation matrix that defines how the object is oriented.
For example, in a place with a few bricks scattered about, put this in the command line:
The output will show something like this, though your numbers will be different if you place the brick in a different location:
The first 3 numbers from all that is the 3D position of an object, in this case
. The last 9 numbers make up a Rotation Matrix which describes which way the object is rotated, in this case
0 | 0 | 1 |
0 | 1 | 0 |
-1 | 0 | 0 |
.
Using CFrames
CFrames are, since they tell you exactly where an object is and how it's rotated, very useful for making things move exactly where you want them. Lets take a look at how to use CFrames to your advantage.
Moving bricks around
Open up a new place with a part.
In the Command Line, type in this bit here and hit enter:
Workspace.Part.CFrame = CFrame.new(0, 50, 0)
You should see that the brick moved up a good distance, you may need to move the camera to see it. What you just did is change where the brick is, by changing it's CFrame. As you should know from the absolute beginner's guide to scripting, you changed the Part's CFrame property, or value by using the equal sign. You set Part.CFrame to a new CFrame, by using the CFrame.new constructor. You constructed a new CFrame using 3 different values. This told the Lua engine to set the brick's CFrame to 0, 50, 0, which set it's position to
, making the brick move to that position.
CFrame you're changing | Set To | Position of where you want the brick |
game.Workspace.Part.CFrame | = | CFrame.new(0, 50, 0) |
The object named "Part" in Workspace | Move to here |
But wait! CFrames are not just useful for moving bricks around. When you change the CFrame property directly with a command, you can place bricks inside of other bricks. This is something that the Position property cannot do. You can also rotate bricks, but this is a little more complex.
Rotating bricks
At the bottom of this page you'll see a few tables that give you the different constructors for CFrame. You can see a bunch of new() commands, which all have different arguments inside of the function. This is because there are several different ways to create a CFrame. You can use just a position, like in the above example, or you can use the more complex ones.
In the case of rotating bricks the popular option is to actually use one of the operators instead of a Constructor.
CFrame you're changing | Set To | Position of where you want the brick | With | Rotation of Brick |
game.Workspace.Part.CFrame | = | CFrame.new(0, 50, 0) | * | CFrame.Angles(0, math.pi, 0) |
The object named "Part" in Workspace | The same spot we just put the brick | Rotate this much |
What this does is take the object you want to rotate; creates a CFrame from it's current location; and uses the * operator to compose the rotation CFrame, which you created with CFrame.Angles
The CFrame.Angles constructor creates a CFrame that is just rotations. In the Moving Bricks part we created one that was just a position. Bricks use the CFrame for both rotation and position, which is what you create when you use the * operator. It takes the position CFrame and the Rotation CFrame, and combines them.
Radians
The numbers returned by CFrame.Angles() are radians (one radian is equal to the radius of the circle).
- math.pi/2 (A quarter turn, or 90 degrees)
- math.pi (A half turn, or 180 degrees)
- math.pi*2 (A full turn, or 360 degrees)
- math.pi + math.pi/2 (Three-quarters turn, or 270 degrees)
For more information on radians, see Radians.
Constructors
These Constructors are used for creating CFrame values.
Constructor | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|
CFrame.new() | Creates a blank identity CFrame | |||||||||
CFrame.new(v) | Creates CFrame from position Vector3 v | |||||||||
CFrame.new(v, l) | Creates CFrame from position Vector3 v looking at point Vector3 l | |||||||||
CFrame.new(x, y, z) | Creates CFrame from position (x, y, z) | |||||||||
CFrame.new(x, y, z, qx, qy, qz, qw) | Creates CFrame from position (x, y, z) and quaternion (qx, qy, qz, qw) | |||||||||
CFrame.new(x, y, z, R00, R01, R02, R10, R11, R12, R20, R21, R22) | Creates a CFrame at (x, y, z) with an orientation specified by the rotation matrix
| |||||||||
CFrame.fromEulerAnglesXYZ(rx, ry, rz) | Creates a rotated CFrame using angles (rx, ry, rz) in radians | |||||||||
CFrame.Angles(rx, ry, rz) | Same function as fromEulerAnglesXYZ, shorter (preferred) name | |||||||||
CFrame.fromAxisAngle(v, r) | Creates a rotated CFrame from a Unit Vector3 and a rotation in radians |
Properties
When you want to use just the position data from a CFrame you can use these properties of CFrames. Note that they are read only, meaning that you can use them, but you cannot change them. (ie: CFrame.x = 5 will not work, but a = CFrame.x will work)
Property | Type | Description |
---|---|---|
CFrame.p | Vector3 | The 3D position of the CFrame |
CFrame.x | Number | the x-component of the Vector3 position |
CFrame.y | Number | the y-component of the Vector3 position |
CFrame.z | Number | the z-component of the Vector3 position |
CFrame.lookVector | Vector3 | returns the facing direction (unit vector) |
Methods
Member Function | Description |
---|---|
CFrame:inverse() | returns the inverse of this CFrame |
CFrame:toWorldSpace(CFrame) | returns a CFrame transformed from Object to World coordinates. |
CFrame:toObjectSpace(CFrame) | returns a CFrame transformed from World to Object coordinates. |
CFrame:pointToWorldSpace(Vector3) | returns a Vector3 transformed from Object to World coordinates. |
CFrame:pointToObjectSpace(Vector3) | returns a Vector3 transformed from World to Object coordinates. |
CFrame:vectorToWorldSpace(Vector3) | returns a Vector3 rotated from Object to World coordinates. |
CFrame:vectorToObjectSpace(Vector3) | returns a Vector3 rotated from World to Object coordinates. |
CFrame:components() | returns the CFrame values: x, y, z, R00, R01, R02, R10, R11, R12, R20, R21, R22 |
CFrame:toEulerAnglesXYZ() | returns "best guess" angles that could be used to generate CFrame |
Operators
These operators are used for combining CFrames and Vector3s.
Operator | Description |
---|---|
CFrame * CFrame | returns composition of two CFrames |
CFrame * Vector3 | returns Vector3 transformed from Object to World coordinates |
CFrame + Vector3 | returns CFrame translated (slid) by Vector3 |
CFrame - Vector3 | returns CFrame translated (slid) by -Vector3 |