摘要:
1. Download googletest, which contain googletest and googlemock : https://github.com/google/googletest 2. install both googletest and googlemock It is 阅读全文
摘要:
A transformation matrix describes the rotation of a coordinate system while an object remains fixed. In contrast, a rotation matrix describes the rota 阅读全文
摘要:
kd-trees allow to efficiently perform searches like "all points at distance lower than R from X" or "k nearest neighbors of X". Kd-trees allow to perf 阅读全文
摘要:
Both object oritend programming(OOP) and generic programming deal with types that are not known at the time the program is written. The distinction be 阅读全文
摘要:
Don't use get to initialize or assign another smart pointer. The code that use the return from get can not delete the pointer Although the compiler wi 阅读全文
摘要:
1. make_shared<T>(args): return a shared_ptr dynamically allocated object of type T. Use args to initialize the object. shared_ptr<T> p(q): p is a cop 阅读全文
摘要:
A* is a best-first search, meaning that it solves problems by searching amoung all possible paths to the solution(goal) for the one that incurs the sm 阅读全文