ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-1.0/utils/sysbuilder/Vector3d.hpp
(Generate patch)

Comparing trunk/OOPSE-1.0/utils/sysbuilder/Vector3d.hpp (file contents):
Revision 1443 by tim, Fri Jul 30 14:44:10 2004 UTC vs.
Revision 1444 by tim, Fri Jul 30 14:51:44 2004 UTC

# Line 23 | Line 23 | class Vector3d{
23        this->z = z;
24      }
25  
26     Vector3d(double* r){
27      this->x = r[0];
28      this->y = r[1];
29      this->z = r[2];
30    }
31
26       Vector3d(const Vector3d& v1){
27        this->x = v1.x;
28        this->y = v1.y;  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines