Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
7ba25a31
Commit
7ba25a31
authored
15 years ago
by
Laurent Van Migroet
Browse files
Options
Downloads
Patches
Plain Diff
warning remove msvc getAxis should return a value
parent
67634030
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Geo/SOrientedBoundingBox.cpp
+8
-7
8 additions, 7 deletions
Geo/SOrientedBoundingBox.cpp
with
8 additions
and
7 deletions
Geo/SOrientedBoundingBox.cpp
+
8
−
7
View file @
7ba25a31
...
...
@@ -15,14 +15,14 @@
#include
"DivideAndConquer.h"
#include
"SBoundingBox3d.h"
double
SOrientedBoundingRectangle
::
area
()
double
SOrientedBoundingRectangle
::
area
()
{
double
b
=
size
->
at
(
0
);
double
B
=
size
->
at
(
1
);
return
(
b
*
B
);
}
SOrientedBoundingRectangle
::
SOrientedBoundingRectangle
()
SOrientedBoundingRectangle
::
SOrientedBoundingRectangle
()
{
center
=
new
std
::
vector
<
double
>
(
2
,
0
);
size
=
new
std
::
vector
<
double
>
(
2
,
0
);
...
...
@@ -147,7 +147,7 @@ SOrientedBoundingBox::SOrientedBoundingBox(SOrientedBoundingBox* other)
}
double
SOrientedBoundingBox
::
getMaxSize
()
double
SOrientedBoundingBox
::
getMaxSize
()
{
return
(
std
::
max
(
size
[
0
],
std
::
max
(
size
[
1
],
size
[
2
])));
}
...
...
@@ -156,13 +156,14 @@ SVector3 SOrientedBoundingBox::getAxis(int axis)
{
SVector3
ret
;
switch
(
axis
)
{
case
0
:
ret
urn
axisX
;
case
1
:
ret
urn
axisY
;
case
2
:
ret
urn
axisZ
;
case
0
:
ret
=
axisX
;
case
1
:
ret
=
axisY
;
case
2
:
ret
=
axisZ
;
}
return
ret
;
}
bool
SOrientedBoundingBox
::
intersects
(
SOrientedBoundingBox
&
obb
)
bool
SOrientedBoundingBox
::
intersects
(
SOrientedBoundingBox
&
obb
)
{
SVector3
collide_axes
[
15
];
for
(
int
i
=
0
;
i
<
3
;
i
++
)
{
...
...
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