I'm not getting any error messages, simply my vector is not populating. Looking at the vector in the watch list, nothing is being copied. Why is this? I've tried two ways. The first
std::vector<Point3D*> hitpoints;
local_hit_point = sr.local_hit_point; //local_hit_point class Point3D
hitpoints.push_back(local_hit_point);
The second way I tried to use pointers
std::vector<Point3D*> hitpoints;
Point3D* hittingpoint_ptr = new Point3D;
local_hit_point = sr.local_hit_point;
hittingpoint_ptr = &local_hit_point;
hitpoints.push_back(hittingpoint_ptr);
I got vectors in other places in my code which work. Am I really just being daft, but I can't seem to figure out why its not working.
sr.local_hit_pointis actually an array of Point3D? In that case you would need to loop through them all and add them one by one. – Shingetsu Apr 7 '12 at 12:04hitpoints.size()to see how many elements there are. When storing pointers, are you sure that the pointed-to object stays in place? – Bo Persson Apr 7 '12 at 12:08