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
Package registry
Model registry
Operate
Terraform modules
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
Romin Tomasetti
gmsh
Commits
0be06842
Commit
0be06842
authored
7 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
fix proto
parent
00750674
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Common/gmsh.h
+11
-12
11 additions, 12 deletions
Common/gmsh.h
with
11 additions
and
12 deletions
Common/gmsh.h
+
11
−
12
View file @
0be06842
...
...
@@ -176,7 +176,7 @@ GMSH_API gmshModelOccAddBezier(const int tag, const std::vector<int> &vertexTags
GMSH_API
gmshModelOccAddBSpline
(
const
int
tag
,
const
std
::
vector
<
int
>
&
vertexTags
,
int
&
outTag
);
GMSH_API
gmshModelOccAddWire
(
const
int
tag
,
const
std
::
vector
<
int
>
&
edgeTags
,
int
&
outTag
,
const
bool
checkClosed
=
false
);
int
&
outTag
,
const
bool
checkClosed
=
false
);
GMSH_API
gmshModelOccAddLineLoop
(
const
int
tag
,
const
std
::
vector
<
int
>
&
edgeTags
,
int
&
outTag
);
GMSH_API
gmshModelOccAddRectangle
(
const
int
tag
,
const
double
x
,
const
double
y
,
...
...
@@ -220,25 +220,24 @@ GMSH_API gmshModelOccAddThruSections(const int tag, const std::vector<int> &wire
GMSH_API
addThickSolid
(
const
int
tag
,
const
int
solidTag
,
const
std
::
vector
<
int
>
&
excludeFaceTags
,
const
double
offset
,
vector_pair
&
outDimTags
);
GMSH_API
gmshModelOccExtrude
(
const
vector_pair
&
inDimTags
,
const
double
dx
,
const
double
dy
,
const
double
dz
,
vector_pair
&
outDimTags
,
const
std
::
vector
<
int
>
&
numElements
,
const
std
::
vector
<
double
>
&
heights
,
const
bool
recombine
);
GMSH_API
gmshModelOccExtrude
(
const
vector_pair
&
inDimTags
,
const
double
dx
,
const
double
dy
,
const
double
dz
,
vector_pair
&
outDimTags
,
const
std
::
vector
<
int
>
&
numElements
=
std
::
vector
<
int
>
(),
const
std
::
vector
<
double
>
&
heights
=
std
::
vector
<
double
>
(),
const
bool
recombine
=
false
);
GMSH_API
gmshModelOccRevolve
(
const
vector_pair
&
inDimTags
,
const
double
x
,
const
double
y
,
const
double
z
,
const
double
ax
,
const
double
ay
,
const
double
az
,
const
double
angle
,
vector_pair
&
outDimTags
,
const
std
::
vector
<
int
>
&
numElements
,
const
std
::
vector
<
double
>
&
heights
,
bool
recombine
);
const
double
angle
,
vector_pair
&
outDimTags
,
const
std
::
vector
<
int
>
&
numElements
=
std
::
vector
<
int
>
()
,
const
std
::
vector
<
double
>
&
heights
=
std
::
vector
<
double
>
()
,
const
bool
recombine
=
false
);
GMSH_API
gmshModelOccAddPipe
(
const
vector_pair
&
inDimTags
,
int
wireTag
,
vector_pair
&
outDimTags
);
GMSH_API
gmshModelOccFillet
(
const
std
::
vector
<
int
>
&
regionTags
,
const
std
::
vector
<
int
>
&
edgeTags
,
const
double
radius
,
vector_pair
&
outDimTags
,
const
bool
removeRegion
);
const
bool
removeRegion
=
true
);
GMSH_API
gmshModelOccBooleanUnion
(
const
int
tag
,
const
vector_pair
&
objectDimTags
,
const
vector_pair
&
toolDimTags
,
vector_pair
&
outDimTags
,
...
...
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