revert add compare operation

This commit is contained in:
nicolaichuk
2017-03-30 01:47:43 +03:00
parent a359262678
commit ccecb4db62
2 changed files with 1 additions and 63 deletions

View File

@@ -28,6 +28,7 @@ subject to the following restrictions:
#include "LinearMath/btAlignedObjectArray.h"
#include "btTriangleShapeEx.h"
/**
Configuration var for applying interpolation of contact normals
*/
@@ -50,36 +51,6 @@ public:
GIM_CONTACT()
{
}
bool operator<(const GIM_CONTACT& obj) const {
return
m_point < obj.m_point &&
m_normal < obj.m_normal &&
m_depth < obj.m_depth &&
m_distance < obj.m_distance &&
m_feature1 < obj.m_feature1 &&
m_feature2 < obj.m_feature2;
}
bool operator>(const GIM_CONTACT& obj) const {
return
m_point > obj.m_point &&
m_normal > obj.m_normal &&
m_depth > obj.m_depth &&
m_distance > obj.m_distance &&
m_feature1 > obj.m_feature1 &&
m_feature2 > obj.m_feature2;
}
bool operator==(const GIM_CONTACT& obj) const {
return
m_point == obj.m_point &&
m_normal == obj.m_normal &&
m_depth == obj.m_depth &&
m_distance == obj.m_distance &&
m_feature1 == obj.m_feature1 &&
m_feature2 == obj.m_feature2;
}
GIM_CONTACT(const GIM_CONTACT & contact):
m_point(contact.m_point),