added non const * V()

This commit is contained in:
Marco Di Benedetto 2006-09-28 13:37:35 +00:00
parent 532040d1bd
commit f2143e6efb
1 changed files with 7 additions and 0 deletions

View File

@ -24,6 +24,9 @@
History
$Log: not supported by cvs2svn $
Revision 1.23 2005/11/09 16:11:55 cignoni
Added Abs and LowClampToZero
Revision 1.22 2005/09/14 14:09:21 m_di_benedetto
Added specialized Convert() for the same scalar type.
@ -197,6 +200,10 @@ public:
{
return _v;
}
inline P3ScalarType * V()
{
return _v;
}
inline P3ScalarType & V( const int i )
{
assert(i>=0 && i<3);