Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dmitri Naumov
ogs
Commits
297ec7c8
Commit
297ec7c8
authored
10 years ago
by
Tom Fischer
Browse files
Options
Downloads
Patches
Plain Diff
[MaL] Moved operator<= and lessEq from Point to MathPoint.
parent
418b38da
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
GeoLib/Point.h
+1
-17
1 addition, 17 deletions
GeoLib/Point.h
MathLib/MathPoint.cpp
+5
-10
5 additions, 10 deletions
MathLib/MathPoint.cpp
MathLib/MathPoint.h
+19
-0
19 additions, 0 deletions
MathLib/MathPoint.h
with
25 additions
and
27 deletions
GeoLib/Point.h
+
1
−
17
View file @
297ec7c8
...
...
@@ -54,23 +54,7 @@ public:
};
static
const
Point
ORIGIN
(
0
,
0
,
0
);
/**
* lexicographic comparison of points
*/
bool
operator
<=
(
GeoLib
::
Point
const
&
p0
,
GeoLib
::
Point
const
&
p1
);
/**
* lexicographical comparison of points taking an epsilon into account
* @param p0 first input Point
* @param p1 first input Point
* @param tol tolerance (if in the comparison operation the property fabs(p0[k] - p1[k]) < tol
* holds for the k-th coordinate the points are assumed the be equal in this coordinate)
* @return true, if p0 is lexicographically smaller than p1
*/
bool
lessEq
(
const
GeoLib
::
Point
&
p0
,
const
GeoLib
::
Point
&
p1
,
double
tol
=
std
::
numeric_limits
<
double
>::
epsilon
());
}
#endif
/* POINT_H_ */
This diff is collapsed.
Click to expand it.
GeoLib/
Point.cpp
→
MathLib/Math
Point.cpp
+
5
−
10
View file @
297ec7c8
/**
* \file
* \author Thomas Fischer
* \date 2010-06-22
* \brief Implementation of the Point class.
* \date 2015-01-16
* \brief Implementation of the MathPoint class.
*
* \copyright
* Copyright (c) 2012-2015, OpenGeoSys Community (http://www.opengeosys.org)
...
...
@@ -12,14 +11,11 @@
*
*/
#include
<cmath>
#include
"Point.h"
namespace
GeoLib
{
#include
"MathPoint.h"
bool
operator
<=
(
const
Geo
Lib
::
Point
&
p0
,
const
Geo
Lib
::
Point
&
p1
)
bool
operator
<=
(
const
Math
Lib
::
Math
Point
&
p0
,
const
Math
Lib
::
Math
Point
&
p1
)
{
if
(
p0
[
0
]
>
p1
[
0
])
{
return
false
;
...
...
@@ -46,7 +42,7 @@ bool operator<= (const GeoLib::Point& p0, const GeoLib::Point& p1)
}
}
bool
lessEq
(
const
Geo
Lib
::
Point
&
p0
,
const
Geo
Lib
::
Point
&
p1
,
double
tol
)
bool
lessEq
(
const
Math
Lib
::
Math
Point
&
p0
,
const
Math
Lib
::
Math
Point
&
p1
,
double
tol
)
{
// test a relative and an absolute criterion
if
(
fabs
(
p0
[
0
]
-
p1
[
0
])
>
tol
*
std
::
min
(
fabs
(
p1
[
0
]),
fabs
(
p0
[
0
]))
&&
fabs
(
p0
[
0
]
-
p1
[
0
])
>
tol
)
{
...
...
@@ -75,4 +71,3 @@ bool lessEq(const GeoLib::Point& p0, const GeoLib::Point& p1, double tol)
}
}
}
// end namespace GeoLib
This diff is collapsed.
Click to expand it.
MathLib/MathPoint.h
+
19
−
0
View file @
297ec7c8
...
...
@@ -14,6 +14,8 @@
#ifndef MATHPOINT_H_
#define MATHPOINT_H_
#include
<cmath>
#include
"TemplatePoint.h"
namespace
MathLib
...
...
@@ -21,5 +23,22 @@ namespace MathLib
typedef
MathLib
::
TemplatePoint
<
double
,
3
>
MathPoint
;
}
// end namespace MathLib
/**
* lexicographic comparison of points
*/
bool
operator
<=
(
MathLib
::
MathPoint
const
&
p0
,
MathLib
::
MathPoint
const
&
p1
);
/**
* lexicographical comparison of points taking an epsilon into account
* @param p0 first input MathPoint
* @param p1 first input MathPoint
* @param tol tolerance (if in the comparison operation the property fabs(p0[k] - p1[k]) < tol
* holds for the k-th coordinate the points are assumed the be equal in this coordinate)
* @return true, if p0 is lexicographically smaller than p1
*/
bool
lessEq
(
const
MathLib
::
MathPoint
&
p0
,
const
MathLib
::
MathPoint
&
p1
,
double
tol
=
std
::
numeric_limits
<
double
>::
epsilon
());
#endif
/* MATHPOINT_H_ */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment