How do I have one array pointer, from an empty array, point to the middle of another existing array?
e.g. something like
Obviously that's not right, but you get the idea.
???? I want to be able to point a temporary array pointer to the middle of a large existing array so that I can then read from the temp array as if offset 0 is in the middle of the original array, so that offsets indexes are simplified, without copying the array or creating a new one.
e.g. something like
Local MyArray:Float[10] Local DummyArray:Float[] Varptr(DummyArray)[0]=Varptr(MyArray[5])
Obviously that's not right, but you get the idea.
???? I want to be able to point a temporary array pointer to the middle of a large existing array so that I can then read from the temp array as if offset 0 is in the middle of the original array, so that offsets indexes are simplified, without copying the array or creating a new one.