[geometry] Removed now unused method

This commit is contained in:
Barend Gehrels
2014-01-19 14:40:35 +01:00
parent 482c9a3a62
commit fe207c73da
4 changed files with 0 additions and 28 deletions

View File

@@ -158,15 +158,6 @@ struct segments_de9im
false, false, false, true);
}
static inline return_type collinear_disjoint()
{
return de9im_segment(0,0,
-1, -1, 1,
-1, -1, 0,
1, 0, 2,
true);
}
};

View File

@@ -284,11 +284,6 @@ struct segments_direction
return return_type('d', false);
}
static inline return_type collinear_disjoint()
{
return return_type('d', false);
}
static inline return_type error(std::string const&)
{
// Return "E" to denote error

View File

@@ -193,11 +193,6 @@ struct segments_intersection_points
return return_type();
}
static inline return_type collinear_disjoint()
{
return return_type();
}
static inline return_type degenerate(S1 const& s, bool)
{
return_type result;

View File

@@ -101,15 +101,6 @@ struct segments_tupled
);
}
static inline return_type collinear_disjoint()
{
return boost::make_tuple
(
Policy1::collinear_disjoint(),
Policy2::collinear_disjoint()
);
}
};
}} // namespace policies::relate