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
Özgür Ozan Sen
ogs
Commits
97c91c8b
Commit
97c91c8b
authored
11 years ago
by
Karsten Rink
Browse files
Options
Downloads
Patches
Plain Diff
moved the 4-points-on-a-plane-check into AnalyticalGeometry
parent
7587cf27
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
GeoLib/AnalyticalGeometry.cpp
+14
-0
14 additions, 0 deletions
GeoLib/AnalyticalGeometry.cpp
GeoLib/AnalyticalGeometry.h
+4
-0
4 additions, 0 deletions
GeoLib/AnalyticalGeometry.h
MeshLib/Elements/TemplateQuad.tpp
+1
-11
1 addition, 11 deletions
MeshLib/Elements/TemplateQuad.tpp
with
19 additions
and
11 deletions
GeoLib/AnalyticalGeometry.cpp
+
14
−
0
View file @
97c91c8b
...
...
@@ -355,4 +355,18 @@ bool dividedByPlane(const GeoLib::Point& a, const GeoLib::Point& b, const GeoLib
return
false
;
}
bool
pointsOnAPlane
(
const
GeoLib
::
Point
&
a
,
const
GeoLib
::
Point
&
b
,
const
GeoLib
::
Point
&
c
,
const
GeoLib
::
Point
&
d
)
{
const
GeoLib
::
Point
AB
(
b
[
0
]
-
a
[
0
],
b
[
1
]
-
a
[
1
],
b
[
2
]
-
a
[
2
]);
const
GeoLib
::
Point
AC
(
c
[
0
]
-
a
[
0
],
c
[
1
]
-
a
[
1
],
c
[
2
]
-
a
[
2
]);
const
GeoLib
::
Point
AD
(
d
[
0
]
-
a
[
0
],
d
[
1
]
-
a
[
1
],
d
[
2
]
-
a
[
2
]);
double
squared_scalar_triple
=
pow
(
GeoLib
::
scalarTriple
(
AC
,
AD
,
AB
),
2
);
double
normalisation_factor
=
(
AB
[
0
]
*
AB
[
0
]
+
AB
[
1
]
*
AB
[
1
]
+
AB
[
2
]
*
AB
[
2
])
*
(
AC
[
0
]
*
AC
[
0
]
+
AC
[
1
]
*
AC
[
1
]
+
AC
[
2
]
*
AC
[
2
])
*
(
AD
[
0
]
*
AD
[
0
]
+
AD
[
1
]
*
AD
[
1
]
+
AD
[
2
]
*
AD
[
2
]);
return
(
squared_scalar_triple
/
normalisation_factor
<
std
::
numeric_limits
<
double
>::
epsilon
());
}
}
// end namespace GeoLib
This diff is collapsed.
Click to expand it.
GeoLib/AnalyticalGeometry.h
+
4
−
0
View file @
97c91c8b
...
...
@@ -150,6 +150,10 @@ double scalarTriple(GeoLib::Point const& u, GeoLib::Point const& v, GeoLib::Poin
bool
dividedByPlane
(
const
GeoLib
::
Point
&
a
,
const
GeoLib
::
Point
&
b
,
const
GeoLib
::
Point
&
c
,
const
GeoLib
::
Point
&
d
);
/// Checks if the four given points are located on a plane.
bool
pointsOnAPlane
(
const
GeoLib
::
Point
&
a
,
const
GeoLib
::
Point
&
b
,
const
GeoLib
::
Point
&
c
,
const
GeoLib
::
Point
&
d
);
}
// end namespace GeoLib
...
...
This diff is collapsed.
Click to expand it.
MeshLib/Elements/TemplateQuad.tpp
+
1
−
11
View file @
97c91c8b
...
...
@@ -125,17 +125,7 @@ bool TemplateQuad<NNODES,CELLQUADTYPE>::isValid() const
if
(
this
->
_area
<=
std
::
numeric_limits
<
double
>::
epsilon
())
return
false
;
const
GeoLib
::
Point
AB
((
*
_nodes
[
1
])[
0
]
-
(
*
_nodes
[
0
])[
0
],
(
*
_nodes
[
1
])[
1
]
-
(
*
_nodes
[
0
])[
1
],
(
*
_nodes
[
1
])[
2
]
-
(
*
_nodes
[
0
])[
2
]);
const
GeoLib
::
Point
AC
((
*
_nodes
[
2
])[
0
]
-
(
*
_nodes
[
0
])[
0
],
(
*
_nodes
[
2
])[
1
]
-
(
*
_nodes
[
0
])[
1
],
(
*
_nodes
[
2
])[
2
]
-
(
*
_nodes
[
0
])[
2
]);
const
GeoLib
::
Point
AD
((
*
_nodes
[
3
])[
0
]
-
(
*
_nodes
[
0
])[
0
],
(
*
_nodes
[
3
])[
1
]
-
(
*
_nodes
[
0
])[
1
],
(
*
_nodes
[
3
])[
2
]
-
(
*
_nodes
[
0
])[
2
]);
// check if all points lie on the same plane
double
squared_scalar_triple
=
pow
(
GeoLib
::
scalarTriple
(
AC
,
AD
,
AB
),
2
);
double
normalisation_factor
=
(
AB
[
0
]
*
AB
[
0
]
+
AB
[
1
]
*
AB
[
1
]
+
AB
[
2
]
*
AB
[
2
])
*
(
AC
[
0
]
*
AC
[
0
]
+
AC
[
1
]
*
AC
[
1
]
+
AC
[
2
]
*
AC
[
2
])
*
(
AD
[
0
]
*
AD
[
0
]
+
AD
[
1
]
*
AD
[
1
]
+
AD
[
2
]
*
AD
[
2
]);
if
(
squared_scalar_triple
/
normalisation_factor
<
std
::
numeric_limits
<
double
>::
epsilon
())
if
(
GeoLib
::
pointsOnAPlane
(
*
_nodes
[
0
],
*
_nodes
[
1
],
*
_nodes
[
2
],
*
_nodes
[
3
]))
{
// check if quad is convex
if
(
GeoLib
::
dividedByPlane
(
*
_nodes
[
0
],
*
_nodes
[
2
],
*
_nodes
[
1
],
*
_nodes
[
3
])
&&
...
...
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