I want to instantiate a Vector.<Number>
with two values of 1.0
You might think I would do Vector.<Number>(1.0, 1.0);
but that only traces 0
Is what I'm trying to do possible? If so, how? Or am I stapled to the routine of using .push
?
I want to instantiate a Vector.<Number>
with two values of 1.0
You might think I would do Vector.<Number>(1.0, 1.0);
but that only traces 0
Is what I'm trying to do possible? If so, how? Or am I stapled to the routine of using .push
?
This one is even shorter:
var vec:Vector.<Number> = new <Number>[1.0, 1.0];