Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openstructure
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor 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
schwede
openstructure
Commits
abfa8a35
Commit
abfa8a35
authored
12 years ago
by
Andreas Schenk
Browse files
Options
Downloads
Patches
Plain Diff
added missing DLLEXPORT statements in vecamat3_op.hh
parent
bfce8d42
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
modules/geom/src/vecmat3_op.hh
+5
-5
5 additions, 5 deletions
modules/geom/src/vecmat3_op.hh
with
5 additions
and
5 deletions
modules/geom/src/vecmat3_op.hh
+
5
−
5
View file @
abfa8a35
...
...
@@ -211,15 +211,15 @@ inline Real DistanceWithPBC(const Vec3& v1, const Vec3& v2, const Vec3& basis_ve
return
sqrt
(
Distance2WithPBC
(
v1
,
v2
,
basis_vec
));
}
//! returns the minimal distance between the points in two Vec3List
DLLEXPORT_OST_GEOM
Real
MinDistance
(
const
Vec3List
&
l1
,
const
Vec3List
&
l2
);
Real
DLLEXPORT_OST_GEOM
MinDistance
(
const
Vec3List
&
l1
,
const
Vec3List
&
l2
);
//! returns the minimal distance between the points in two Vec3List
// with periodic boundaries in x,y,z given in basis_vec
DLLEXPORT_OST_GEOM
Real
MinDistanceWithPBC
(
const
Vec3List
&
l1
,
const
Vec3List
&
l2
,
Vec3
&
basis_vec
);
Real
DLLEXPORT_OST_GEOM
MinDistanceWithPBC
(
const
Vec3List
&
l1
,
const
Vec3List
&
l2
,
Vec3
&
basis_vec
);
//!wraps a vector in a box with periodic boundaries
DLLEXPORT_OST_GEOM
Vec3
WrapVec3
(
const
Vec3
&
v1
,
const
Vec3
&
box_center
,
const
Vec3
&
basis_vec
);
//!wraps all the vectors in a Vec3List in a box with periodic boundaries
DLLEXPORT_OST_GEOM
Vec3List
WrapVec3List
(
const
Vec3List
&
vl
,
const
Vec3
&
box_center
,
const
Vec3
&
basis_vec
);
Vec3
DLLEXPORT_OST_GEOM
WrapVec3
(
const
Vec3
&
v1
,
const
Vec3
&
box_center
,
const
Vec3
&
basis_vec
);
//!wraps all the ve
r
ctors in a Vec3List in a box with periodic boundaries
Vec3List
DLLEXPORT_OST_GEOM
WrapVec3List
(
const
Vec3List
&
vl
,
const
Vec3
&
box_center
,
const
Vec3
&
basis_vec
);
}
// ns
...
...
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