jumbo.euclid
Class EuclidVector

java.lang.Object
  |
  +--java.util.AbstractCollection
        |
        +--java.util.AbstractList
              |
              +--java.util.Vector
                    |
                    +--jumbo.euclid.EuclidVector
Direct Known Subclasses:
Int2Vector, Point3Vector, Real2Vector

public class EuclidVector
extends java.util.Vector

an array of objects (NOT to be confused with Vector3).

This class should probably not be used directly and is merely to act as superclass for classes like Point3Vector. Most of the routines in this class are obsolete

See Also:
Serialized Form

Fields inherited from class java.util.Vector
capacityIncrement, elementCount, elementData
 
Fields inherited from class java.util.AbstractList
modCount
 
Constructor Summary
EuclidVector()
           
EuclidVector(int size)
           
 
Method Summary
protected  void concatenate(EuclidVector v)
          concatenate two vectors (must be of same type - hence protected)
 
Methods inherited from class java.util.Vector
add, add, addAll, addAll, addElement, capacity, clear, clone, contains, containsAll, copyInto, elementAt, elements, ensureCapacity, equals, firstElement, get, hashCode, indexOf, indexOf, insertElementAt, isEmpty, lastElement, lastIndexOf, lastIndexOf, remove, remove, removeAll, removeAllElements, removeElement, removeElementAt, removeRange, retainAll, set, setElementAt, setSize, size, subList, toArray, toArray, toString, trimToSize
 
Methods inherited from class java.util.AbstractList
iterator, listIterator, listIterator
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

EuclidVector

public EuclidVector()

EuclidVector

public EuclidVector(int size)
Method Detail

concatenate

protected void concatenate(EuclidVector v)
concatenate two vectors (must be of same type - hence protected)