Typedefs OpenVDS::Vector

using OpenVDS::IntVector2 = Vector<int, 2>
using OpenVDS::IntVector3 = Vector<int, 3>
using OpenVDS::IntVector4 = Vector<int, 4>
using OpenVDS::FloatVector2 = Vector<float, 2>
using OpenVDS::FloatVector3 = Vector<float, 3>
using OpenVDS::FloatVector4 = Vector<float, 4>
using OpenVDS::DoubleVector2 = Vector<double, 2>
using OpenVDS::DoubleVector3 = Vector<double, 3>
using OpenVDS::DoubleVector4 = Vector<double, 4>
template<size_t N>
using OpenVDS::IntVector = Vector<int, N>
template<size_t N>
using OpenVDS::FloatVector = Vector<float, N>
template<size_t N>
using OpenVDS::DoubleVector = Vector<double, N>