This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <memory> | |
#include <iostream> | |
class Object | |
{ | |
public: | |
std::string mData; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ImGui - standalone example application for Glfw + OpenGL 3, using programmable pipeline | |
// If you are new to ImGui, see examples/README.txt and documentation at the top of imgui.cpp. | |
#include <imgui.h> | |
#include "imgui_impl_glfw_gl3.h" | |
#include <stdio.h> | |
#include <GL/gl3w.h> | |
#include <GLFW/glfw3.h> | |
static void error_callback(int error, const char* description) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Starting /home/js/dev/pr/fcl/bugreporting_boxbox/build/Debug/test/regression_test_fcl_boxmeshboxmesh... | |
Running 1 test case... | |
/home/js/dev/pr/fcl/bugreporting_boxbox/test/regression_test_fcl_boxmeshboxmesh.cpp(149): error in "collision_boxmeshboxmesh_contactpoint": check result failed | |
aabb contact point: (-0.5 0.5 0.5) | |
/home/js/dev/pr/fcl/bugreporting_boxbox/test/regression_test_fcl_boxmeshboxmesh.cpp(149): error in "collision_boxmeshboxmesh_contactpoint": check result failed | |
aabb contact point: (0.5 0.5 -0.5) | |
/home/js/dev/pr/fcl/bugreporting_boxbox/test/regression_test_fcl_boxmeshboxmesh.cpp(149): error in "collision_boxmeshboxmesh_contactpoint": check result failed | |
aabb contact point: (-0.5 0.5 0.5) | |
/home/js/dev/pr/fcl/bugreporting_boxbox/test/regression_test_fcl_boxmeshboxmesh.cpp(149): error in "collision_boxmeshboxmesh_contactpoint": check result failed | |
aabb contact point: (0.5 0.5 -0.5) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Joint : public virtual ComponentManager | |
{ | |
public: | |
struct Properties // First category of Properties | |
{ | |
std::string mName; | |
Eigen::Isometry3d mTransformFromParent; | |
Eigen::Isometry3d mTransformFromChild; | |
ActuatorType mActuatorType; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template <typename T> | |
class const_ptr_vector | |
{ | |
public: | |
class iterator | |
{ | |
public: | |
using const_iterator = typename std::vector<T*>::const_iterator; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <memory> | |
#include <typeinfo> | |
#include <typeindex> | |
#include <map> | |
#include <unordered_map> | |
template <typename T> struct type {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <memory> | |
#include <typeinfo> | |
#include <typeindex> | |
#include <map> | |
template <typename T> struct type {}; | |
class Addon {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/CMakeLists.txt b/CMakeLists.txt | |
index f04f57a..9ec95ab 100644 | |
--- a/CMakeLists.txt | |
+++ b/CMakeLists.txt | |
@@ -18,6 +18,7 @@ message(STATUS "CMAKE_BINARY_DIR = ${CMAKE_BINARY_DIR}") | |
option(BUILD_SNOPT "Build with SNOPT optimizer" OFF) | |
option(BUILD_CORE_ONLY "Build only the core of DART" OFF) | |
+option(BUILD_UNITTESTS "Build unit tests" ON) | |
if(NOT MSVC) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define BOOST_TEST_MODULE "FCL_SHAPE_MESH_CONSISTENCY" | |
#include <boost/test/unit_test.hpp> | |
#include "fcl/narrowphase/narrowphase.h" | |
#include "fcl/shape/geometric_shape_to_BVH_model.h" | |
#include "fcl/distance.h" | |
#include "fcl/collision.h" | |
#include "test_fcl_utility.h" | |
using namespace fcl; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <algorithm> | |
#include <cassert> | |
#include <functional> | |
#include <iostream> | |
#include <limits> | |
#include <map> | |
#define LISTENER_COUNT_MAX 256 | |
/// class Event |
NewerOlder