For example; i'm using this class:
Point originOne = new Point(x, y);
If i want to create a N number of points (originTwo,originThree...originN); can I do it using a for loop like :
for(int i=0;i<n-1;i++){
}
If it's possible; how do i give them different names?