Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
meshmode
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Andreas Klöckner
meshmode
Merge requests
!15
Normal fix
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Normal fix
normal-fix
into
master
Overview
0
Commits
3
Pipelines
1
Changes
1
Merged
Andreas Klöckner
requested to merge
normal-fix
into
master
7 years ago
Overview
0
Commits
3
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Viewing commit
642bbbc2
Prev
Next
Show latest version
1 file
+
4
−
4
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
642bbbc2
Fix 3D face element ordering to maintain positive faces for fixed normals formula
· 642bbbc2
Andreas Klöckner
authored
7 years ago
meshmode/mesh/__init__.py
+
4
−
4
Options
@@ -288,10 +288,10 @@ class SimplexElementGroup(MeshElementGroup):
@@ -288,10 +288,10 @@ class SimplexElementGroup(MeshElementGroup):
)
)
elif
self
.
dim
==
3
:
elif
self
.
dim
==
3
:
return
(
return
(
(
0
,
1
,
2
),
(
0
,
2
,
1
),
(
0
,
3
,
1
),
(
0
,
1
,
3
),
(
0
,
2
,
3
),
(
0
,
3
,
2
),
(
1
,
3
,
2
)
(
1
,
2
,
3
)
)
)
else
:
else
:
raise
NotImplementedError
(
"
dim=%d
"
%
self
.
dim
)
raise
NotImplementedError
(
"
dim=%d
"
%
self
.
dim
)
Loading