VectorA:tostring

From ComputerCraft Wiki
Revision as of 11:14, 23 February 2013 by MafiaMoe (Talk | contribs) (Created page with "Returns a string representation of a vector Code example: local a = vector.new(1, 2, 3) local c = a:tostring() print(c) --1,2,3")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Returns a string representation of a vector

Code example:

local a = vector.new(1, 2, 3)

local c = a:tostring()

print(c)
--1,2,3