Re: [GENERAL] 3d Vector Types and operators

2009-10-14 Thread Sam Mason
On Wed, Oct 14, 2009 at 12:04:26PM -0500, Andrew Bailey wrote: > I cant find in the documentation support for a 3 dimensional vector, > I have only seen the array type, I am interested in doing vector dot > products and vector cross products, also summing vectors and > multiplying by a scalar quant

[GENERAL] 3d Vector Types and operators

2009-10-14 Thread Andrew Bailey
Hi, I cant find in the documentation support for a 3 dimensional vector, I have only seen the array type, I am interested in doing vector dot products and vector cross products, also summing vectors and multiplying by a scalar quantity select array[1,2,3]+array[2,4,5]; select 2*array[1,2,3]; The