Difference between revisions of "Vector.new"

From ComputerCraft Wiki
Jump to: navigation, search
(Changing int to number)
 
(4 intermediate revisions by one other user not shown)
Line 1: Line 1:
Returns a table with the labels "x", "y" and "z" containing the coordinates of the vector.
+
{{lowercase}}
 
+
{{Function
local a = vector.new(1, 2, 3)
+
|name=vector.new
 +
|args={{type|number}} x, {{type|number}} y, {{type|number}} z
 +
|returns=[[vector (API)|vector]]
 +
|api=vector
 +
|addon=ComputerCraft
 +
|desc=Creates a vector.
 +
|examples=
 +
{{Example
 +
|desc=Creates a vector and prints the components
 +
|code= local a = vector.new(1, 2, 3)
 
   
 
   
 
  print(a.x)
 
  print(a.x)
Line 9: Line 18:
 
  --2
 
  --2
 
  --3
 
  --3
 +
}}
 +
}}
 +
 +
[[Category:API_Functions]]

Latest revision as of 13:10, 18 July 2013


Grid Redstone.png  Function vector.new
Creates a vector.
Syntax vector.new(number x, number y, number z)
Returns vector
Part of ComputerCraft
API vector

Examples

Grid paper.png  Example
Creates a vector and prints the components
Code
local a = vector.new(1, 2, 3)

print(a.x)
print(a.y)
print(a.z)
--1
--2
--3