Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenMesh
OpenMesh
Commits
21cc0aca
Commit
21cc0aca
authored
Nov 19, 2015
by
Hans-Christian Ebke
Browse files
C++11: Explicitly defined default copy/move c'tor and operator=.
parent
d511f657
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/OpenMesh/Core/Geometry/Vector11T.hh
View file @
21cc0aca
...
...
@@ -125,6 +125,11 @@ class VectorT {
constexpr
VectorT
(
T
...
vs
)
:
values_
{
{
static_cast
<
Scalar
>
(
vs
)...}
}
{}
VectorT
(
const
VectorT
&
rhs
)
=
default
;
VectorT
(
VectorT
&&
rhs
)
=
default
;
VectorT
&
operator
=
(
const
VectorT
&
rhs
)
=
default
;
VectorT
&
operator
=
(
VectorT
&&
rhs
)
=
default
;
/**
* Only for 4-component vectors with division operator on their
* Scalar: Dehomogenization.
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment