I think the title is self-descriptive but let's just put an example
float[] shape1 = new float[4]; //Those 4 floats are XCoord,YCoord,Width,Height
float[] shape1XY = new float[2] /*I want to store here the values of the
first 2 floats from shape1
with the ability that when i change them
shape1[0] and shape1[1] are also changed */
Is there a way of actually doing this?