HI,
wondering how iām meant to return a PVector array;
public PVector VECTORS(){
PVector[] v = new PVector[1000];
for(int i =0; i<v.length; i++){
v[i] = new PVector(random(width), random(height));
}
return v;
}
this gives me the error "cannot convert PVector[] to PVector.
unsure what im doing wrong.
any help is much appreciated.
Thanks in advance