Question:
Is it possible to put more than one result into the same vector?
Example:
Xmatch = (array1[a] * Line1_ValueX) + line2_ax;
Ymatch = (array1[a] * Line1_ValueY) - line2_ax;
//store values to vector
aspectsX.push_back(Xmatch);<<<<<????Can I add Ymatch into this vector, so that all results will be held in this vector?????????????