INTEGRATION: CWS aw024 (1.1.1.1.72); FILE MERGED

2006/09/22 04:24:34 aw 1.1.1.1.72.3: RESYNC: (1.2-1.3); FILE MERGED
2005/09/19 15:35:11 aw 1.1.1.1.72.2: RESYNC: (1.1.1.1-1.2); FILE MERGED
2005/04/26 14:50:18 aw 1.1.1.1.72.1: #i39528#
This commit is contained in:
Ivo Hinkelmann 2006-11-14 14:35:56 +00:00
parent ff9024e145
commit c6df4ded22

View file

@ -4,9 +4,9 @@
*
* $RCSfile: Linear3DTransformation.cxx,v $
*
* $Revision: 1.3 $
* $Revision: 1.4 $
*
* last change: $Author: obo $ $Date: 2006-09-17 13:36:29 $
* last change: $Author: ihi $ $Date: 2006-11-14 15:35:56 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@ -59,9 +59,9 @@ Sequence< double > SAL_CALL Linear3DTransformation::transform(
lang::IllegalArgumentException)
{
/*
Vector3D aSource( SequenceToVector3D( rSourceValues ) );
Vector3D aTarget = m_Matrix*aSource;
return Vector3DToSequence(aTarget);
::basegfx::B3DPoint aSource( SequenceToB3DPoint( rSourceValues ) );
::basegfx::B3DPoint aTarget = m_Matrix*aSource;
return B3DPointToSequence(aTarget);
*/
Sequence< double > aNewVec(3);
double fZwi;