MCPcopy Create free account
hub / github.com/HKUST-Aerial-Robotics/FUEL / ViewNode

Method ViewNode

fuel_planner/active_perception/src/graph_node.cpp:18–23  ·  view source on GitHub ↗

Graph node for viewpoints planning

Source from the content-addressed store, hash-verified

16
17// Graph node for viewpoints planning
18ViewNode::ViewNode(const Vector3d& p, const double& y) {
19 pos_ = p;
20 yaw_ = y;
21 parent_ = nullptr;
22 vel_.setZero(); // vel is zero by default, should be set explicitly
23}
24
25double ViewNode::costTo(const ViewNode::Ptr& node) {
26 vector<Vector3d> path;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected