There are no built in commands for AppGameKit tier 1.
Here is an example for coding them yourself.
type vectortype
x as float
y as float
endtype
v1 as vectortype
v2 as vectortype
v3 as vectortype
v1 = setvector(1.0, 2.0)
v2 = setvector(3.0, 4.0)
v3 = addvectors(v1, v2)
do
print(str(v1.x))
print(str(v1.y))
print(str(v2.x))
print(str(v2.y))
print(str(v3.x))
print(str(v3.y))
sync()
loop
function setvector(x as float, y as float)
vector as vectortype
vector.x = x
vector.y = y
endfunction vector
function addvectors(vector1 as vectortype, vector2 as vectortype)
vector as vectortype
vector.x = vector1.x + vector2.x
vector.y = vector1.y + vector2.y
endfunction vector