ITK  4.8.0
Insight Segmentation and Registration Toolkit
SphinxExamples/src/Core/Common/CreateACovariantVector/Code.cxx
int main(int, char*[])
{
const unsigned int Dimension = 3;
typedef double CoordType;
VectorType v;
v[0] = 1.0;
v[1] = 2.0;
v[2] = 3.0;
std::cout << "v: " << v << std::endl;
return EXIT_SUCCESS;
}