Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
3f2447c3
Commit
3f2447c3
authored
May 04, 2011
by
Sebastian Eichelbaum
Browse files
[CHNGE] - removed last compatibility function
parent
1d5ffab8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
14 deletions
+0
-14
src/common/math/linearAlgebra/WMatrixFixed.h
src/common/math/linearAlgebra/WMatrixFixed.h
+0
-14
No files found.
src/common/math/linearAlgebra/WMatrixFixed.h
View file @
3f2447c3
...
...
@@ -1042,12 +1042,6 @@ public:
return
!
operator
==
(
rhs
);
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// For compatibility to the old vec/matrix types. They are ALL deprecated and will be removed
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
double
normalize
();
private:
/**
* The value array. Stored row-major. Never access this directly. Always use operator(). This allows us to later-on use another storing
...
...
@@ -1261,14 +1255,6 @@ WMatrixFixed< RHSValueT, Rows, Cols, RHSValueStoreT > normalize( const WMatrixFi
return
m
*
static_cast
<
RHSValueT
>
(
1.0
/
length
(
m
)
);
}
template
<
typename
ValueT
,
size_t
Rows
,
size_t
Cols
,
ValueStoreTemplate
ValueStoreT
>
double
WMatrixFixed
<
ValueT
,
Rows
,
Cols
,
ValueStoreT
>::
normalize
()
{
ValueT
l
=
length
(
*
this
);
operator
/=
(
l
);
return
l
;
}
/**
* Inverts the specified matrix.
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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