Skip to content
Snippets Groups Projects
Commit 41fc158f authored by jcarpent's avatar jcarpent
Browse files

[C++] GeometryData and GeometryModel are now struct

Same as Model and Data
parent 2915f860
No related branches found
No related tags found
No related merge requests found
......@@ -71,9 +71,8 @@ namespace se3
std::size_t object2;
}; // struct DistanceResult
class GeometryModel
struct GeometryModel
{
public:
typedef Model::Index Index;
Index ngeom;
......@@ -107,14 +106,10 @@ namespace se3
void addOutterObject(Index joint, Index outer_object);
friend std::ostream& operator<<(std::ostream& os, const GeometryModel& model_geom);
private:
};
class GeometryData
struct GeometryData
{
public:
typedef Model::Index Index;
typedef std::pair < Index, Index > CollisionPair_t;
......@@ -213,7 +208,6 @@ namespace se3
}
}
friend std::ostream& operator<<(std::ostream& os, const GeometryData& data_geom);
private:
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment