1 |
< |
/* |
1 |
> |
/* |
2 |
|
* Copyright (c) 2005 The University of Notre Dame. All Rights Reserved. |
3 |
|
* |
4 |
|
* The University of Notre Dame grants you ("Licensee") a |
144 |
|
|
145 |
|
typedef Vector3<int> Vector3i; |
146 |
|
|
147 |
< |
typedef Vector3<double> Vector3d; |
147 |
> |
typedef Vector3<RealType> Vector3d; |
148 |
|
|
149 |
< |
const Vector3d V3Zero(0.0 , 0.0, 0.0); |
150 |
< |
const Vector3d V3X( 1.0, 0.0, 0.0 ) ; |
151 |
< |
const Vector3d V3Y( 0.0, 1.0, 0.0 ) ; |
152 |
< |
const Vector3d V3Z ( 0.0, 0.0, 1.0 ) ; |
149 |
> |
const Vector3d V3Zero(0.0 , 0.0, 0.0); |
150 |
> |
const Vector3d V3X( 1.0, 0.0, 0.0 ) ; |
151 |
> |
const Vector3d V3Y( 0.0, 1.0, 0.0 ) ; |
152 |
> |
const Vector3d V3Z ( 0.0, 0.0, 1.0 ) ; |
153 |
|
|
154 |
|
} |
155 |
|
|