6 years, 6 months ago
Highlights
Hello,can someone explain me if there are differences in execution speed between following 3:int a=3; size_t b=(size_t)a; size_t b=size_t(a); size_t b=static_cast<size_t>(…
6 years, 6 months ago
7 years, 6 months ago
Hello, I have my 3D application use floats for almost everything. Now I realize that I lack precision (typically for transformation matrices, that are cumulative with a hierarch…
7 years, 6 months ago
This is the second time I run in this strange situation: My application has a memory problem (e.g. writing over the end of an array) and crashes. While looking for the error I a…
7 years, 8 months ago
Latest Activity
See all in DiscussionsThanks for the clarification!!
6 years, 6 months ago
Hello,can someone explain me if there are differences in execution speed between following 3:int a=3; size_t b=(size_t)a; size_t b=size_t(a); size_t …
6 years, 6 months ago
Thanks for the replies. I do not have large positions, but I have sometimes a chain of 20+ objects built …
7 years, 6 months ago