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
ba33a50a
Commit
ba33a50a
authored
12 years ago
by
Jonathan Lambrechts
Browse files
Options
Downloads
Patches
Plain Diff
Geo:MQuadrangle : fix segfault in _myGetEdgeRep
parent
a5683b4f
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/MQuadrangle.cpp
+1
-1
1 addition, 1 deletion
Geo/MQuadrangle.cpp
with
1 addition
and
1 deletion
Geo/MQuadrangle.cpp
+
1
−
1
View file @
ba33a50a
...
@@ -112,7 +112,7 @@ double MQuadrangle::getVolume()
...
@@ -112,7 +112,7 @@ double MQuadrangle::getVolume()
static
void
_myGetEdgeRep
(
MQuadrangle
*
q
,
int
num
,
double
*
x
,
double
*
y
,
double
*
z
,
static
void
_myGetEdgeRep
(
MQuadrangle
*
q
,
int
num
,
double
*
x
,
double
*
y
,
double
*
z
,
SVector3
*
n
,
int
numSubEdges
)
SVector3
*
n
,
int
numSubEdges
)
{
{
n
[
0
]
=
n
[
1
]
=
n
[
2
]
=
n
[
3
]
=
q
->
getFace
(
0
).
normal
();
n
[
0
]
=
n
[
1
]
=
q
->
getFace
(
0
).
normal
();
int
ie
=
num
/
numSubEdges
;
int
ie
=
num
/
numSubEdges
;
int
isub
=
num
%
numSubEdges
;
int
isub
=
num
%
numSubEdges
;
double
xi1
=
-
1.
+
(
2.
*
isub
)
/
numSubEdges
;
double
xi1
=
-
1.
+
(
2.
*
isub
)
/
numSubEdges
;
...
...
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