Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void test()
- {
- vector<Pixel> Pixels;
- Pixel cPixel = {0,0,0};
- Pixels.push_back(cPixel);
- Pixels.push_back(cPixel);
- Pixels.push_back(cPixel);
- cPixel = Pixels.back();
- Pixels.pop_back();
- Pixels.back();
- }
Advertisement
Add Comment
Please, Sign In to add comment