mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-10 23:42:12 +00:00
Merge pull request #52 from mkaravel/feature/distance
[strategies][distance] change template parameters' names to reflect the objects they represent
This commit is contained in:
@@ -315,10 +315,10 @@ public :
|
||||
};
|
||||
|
||||
|
||||
template <typename Box1, typename Box2>
|
||||
template <typename BoxPoint1, typename BoxPoint2>
|
||||
struct default_strategy
|
||||
<
|
||||
box_tag, box_tag, Box1, Box2, cartesian_tag, cartesian_tag
|
||||
box_tag, box_tag, BoxPoint1, BoxPoint2, cartesian_tag, cartesian_tag
|
||||
>
|
||||
{
|
||||
typedef pythagoras_box_box<> type;
|
||||
|
||||
@@ -313,10 +313,10 @@ public :
|
||||
};
|
||||
|
||||
|
||||
template <typename Point, typename Box>
|
||||
template <typename Point, typename BoxPoint>
|
||||
struct default_strategy
|
||||
<
|
||||
point_tag, box_tag, Point, Box, cartesian_tag, cartesian_tag
|
||||
point_tag, box_tag, Point, BoxPoint, cartesian_tag, cartesian_tag
|
||||
>
|
||||
{
|
||||
typedef pythagoras_point_box<> type;
|
||||
|
||||
Reference in New Issue
Block a user