You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Conception/drake-master/geometry/test_utilities/meshcat_environment.h

17 lines
407 B

#pragma once
#include <memory>
#include "drake/geometry/meshcat.h"
namespace drake {
namespace geometry {
/** Returns a singleton Meshcat object to be used during unit tests. The same
object is used for all test cases. If test code needs to reset the scene
between tests, it must do so explicitly. */
std::shared_ptr<Meshcat> GetTestEnvironmentMeshcat();
} // namespace geometry
} // namespace drake