A C D E G H I M P R S T U V _

V

Vector_AbstractGeometry2D - Class in uk.ac.leeds.ccg.andyt.vector.geometry
An abstract class defining a geometrical object and the methods it must implement.
Vector_AbstractGeometry2D() - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_AbstractGeometry2D
 
Vector_Angles - Class in uk.ac.leeds.ccg.andyt.vector.geometrics
 
Vector_Angles() - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometrics.Vector_Angles
 
Vector_Envelope2D - Class in uk.ac.leeds.ccg.andyt.vector.geometry
A class for simplifying geometry in 2D.
Vector_Envelope2D() - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Envelope2D
Creates a default Vector_Envelope2D _xmin = new BigDecimal(Long.MAX_VALUE); _xmax = new BigDecimal(Long.MIN_VALUE); _ymin = new BigDecimal(Long.MAX_VALUE); _ymax = new BigDecimal(Long.MIN_VALUE);
Vector_Envelope2D(Vector_Envelope2D) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Envelope2D
 
Vector_Envelope2D(Vector_AbstractGeometry2D) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Envelope2D
 
Vector_Envelope2D(Vector_Point2D, Vector_Point2D) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Envelope2D
 
Vector_Envelope2D(BigDecimal, BigDecimal) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Envelope2D
 
Vector_Envelope2D(Vector_AbstractGeometry2D[]) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Envelope2D
 
Vector_Environment - Class in uk.ac.leeds.ccg.andyt.vector.core
 
Vector_Environment() - Constructor for class uk.ac.leeds.ccg.andyt.vector.core.Vector_Environment
Creates a new Vector_Environment
Vector_Line2D - Class in uk.ac.leeds.ccg.andyt.vector.geometry
 
Vector_Line2D(double, Vector_Point2D) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Line2D
 
Vector_Line2D(BigDecimal, Vector_Point2D) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Line2D
 
Vector_LineSegment2D - Class in uk.ac.leeds.ccg.andyt.vector.geometry
Class for a line segment in 2D represented by two Point2D instances, one is designated a start point and the other an end point.
Vector_LineSegment2D() - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_LineSegment2D
Creates a default Vector_LineSegment2D with: _Start_Point2D = null; _End_Point2D = null;
Vector_LineSegment2D(Vector_Point2D, Vector_Point2D) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_LineSegment2D
Creates a Vector_LineSegment2D with: this._Start_Point2D = new Point2D(_StartPoint); this._End_Point2D = new Point2D(_EndPoint); set_DecimalPlacePrecision(Math.max( _Start_Point2D.get_DecimalPlacePrecision(), _End_Point2D.get_DecimalPlacePrecision()));
Vector_LineSegment2D(Vector_Point2D, Vector_Point2D, int) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_LineSegment2D
Creates a Vector_LineSegment2D with: _StartPoint = _StartPoint; _EndPoint = _EndPoint; _DecimalPlacePrecision_Integer = _DecimalPlacePrecision_Integer; _RoundingMode = _RoundingMode.
Vector_LineSegment2D(Vector_LineSegment2D) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_LineSegment2D
Creates a Vector_LineSegment2D with: this._Start_Point2D = new Point2D(a_LineSegment2D._Start_Point2D); this._End_Point2D = new Point2D(a_LineSegment2D._End_Point2D); this._DecimalPlacePrecision_Integer = a_LineSegment2D._DecimalPlacePrecision_Integer;
Vector_Network2D - Class in uk.ac.leeds.ccg.andyt.vector.geometry
Class for networks.
Vector_Network2D() - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Network2D
 
Vector_Network2D(AbstractGrid2DSquareCell) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Network2D
 
Vector_Network2D.Connection - Class in uk.ac.leeds.ccg.andyt.vector.geometry
 
Vector_Network2D.Connection() - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Network2D.Connection
 
Vector_Network2D.Connection(Vector_Point2D, int, double) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Network2D.Connection
 
Vector_Point2D - Class in uk.ac.leeds.ccg.andyt.vector.geometry
Class for points in 2D.
Vector_Point2D() - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Point2D
Creates a default Vector_Point2D with: _x = null; _y = null;
Vector_Point2D(Vector_Point2D) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Point2D
_x = new BigDecimal(aPoint2D._x.toString()); _y = new BigDecimal(aPoint2D._y.toString()); set_DecimalPlacePrecision(Math.max(_x.scale(),_y.scale()));
Vector_Point2D(Vector_Point2D, int) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Point2D
_x = new BigDecimal(aPoint2D._x.toString()); _y = new BigDecimal(aPoint2D._y.toString()); set_DecimalPlacePrecision(_DecimalPlacePrecision_Integer);
Vector_Point2D(Vector_Point2D, BigDecimal, BigDecimal) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Point2D
_x = new BigDecimal(a_Point2D._x.toString()); _y = new BigDecimal(a_Point2D._y.toString()); _x = VectorStaticBigDecimal.getRounded_BigDecimal( _x, toRoundToX_BigDecimal); _y = VectorStaticBigDecimal.getRounded_BigDecimal( _y, toRoundToY_BigDecimal); set_DecimalPlacePrecision( Math.max( toRoundToX_BigDecimal.scale(), toRoundToY_BigDecimal.scale()));
Vector_Point2D(BigDecimal, BigDecimal) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Point2D
this._x = new BigDecimal(_x.toString()); this._y = new BigDecimal(_y.toString()); set_DecimalPlacePrecision(Math.max(_x.scale(),_y.scale()));
Vector_Point2D(BigDecimal, BigDecimal, int) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Point2D
this._x = new BigDecimal(_x.toString()); this._y = new BigDecimal(_y.toString()); set_DecimalPlacePrecision(_DecimalPlacePrecision_Integer);
Vector_Point2D(BigDecimal, BigDecimal, BigDecimal, BigDecimal) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Point2D
this._x = VectorStaticBigDecimal.getRounded_BigDecimal( _x, toRoundToX_BigDecimal); this._y = VectorStaticBigDecimal.getRounded_BigDecimal( _y, toRoundToY_BigDecimal); set_DecimalPlacePrecision(toRoundTo_BigDecimal.scale());
Vector_Point2D(String, String) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Point2D
_x = new BigDecimal(x); _y = new BigDecimal(y); set_DecimalPlacePrecision(Math.max(_x.scale(),_y.scale()));
Vector_Point2D(String, String, int) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Point2D
_x = new BigDecimal(x); _y = new BigDecimal(y); set_DecimalPlacePrecision(_DecimalPlacePrecision_Integer);
Vector_Point2D(double, double) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Point2D
Deprecated.  
Vector_Point2D(double, double, int) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Point2D
_x = new BigDecimal(x); _y = new BigDecimal(y); set_DecimalPlacePrecision(_DecimalPlacePrecision_Integer);
Vector_Point2D(double, double, BigDecimal, BigDecimal) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_Point2D
this._x = VectorStaticBigDecimal.getRounded_BigDecimal( new BigDecimal(x), toRoundToX_BigDecimal); this._y = VectorStaticBigDecimal.getRounded_BigDecimal( new BigDecimal(y), toRoundToY_BigDecimal); set_DecimalPlacePrecision( Math.max( toRoundToX_BigDecimal.scale(), toRoundToY_BigDecimal.scale()));
Vector_SimplePoint2D - Class in uk.ac.leeds.ccg.andyt.vector.geometry
 
Vector_SimplePoint2D() - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_SimplePoint2D
Creates a default VectorPoint2D with: _x = null; _y = null;
Vector_SimplePoint2D(BigDecimal, BigDecimal) - Constructor for class uk.ac.leeds.ccg.andyt.vector.geometry.Vector_SimplePoint2D
Creates a default VectorPoint2D with: _x = x; _y = y;
VectorAbstractRender - Class in uk.ac.leeds.ccg.andyt.vector.visualisation
Abstract class for renderers.
VectorAbstractRender() - Constructor for class uk.ac.leeds.ccg.andyt.vector.visualisation.VectorAbstractRender
 
VectorImageManipulation - Class in uk.ac.leeds.ccg.andyt.vector.visualisation
 
VectorImageManipulation() - Constructor for class uk.ac.leeds.ccg.andyt.vector.visualisation.VectorImageManipulation
 
VectorOverlayComponent - Class in uk.ac.leeds.ccg.andyt.vector.visualisation
 
VectorOverlayComponent() - Constructor for class uk.ac.leeds.ccg.andyt.vector.visualisation.VectorOverlayComponent
 
VectorOverlayComponent_Network2D - Class in uk.ac.leeds.ccg.andyt.vector.visualisation
 
VectorOverlayComponent_Network2D(VectorRenderNetwork2D) - Constructor for class uk.ac.leeds.ccg.andyt.vector.visualisation.VectorOverlayComponent_Network2D
 
VectorRender - Class in uk.ac.leeds.ccg.andyt.vector.visualisation
Deprecated. 
VectorRender(JFrame) - Constructor for class uk.ac.leeds.ccg.andyt.vector.visualisation.VectorRender
Deprecated.  
VectorRender() - Constructor for class uk.ac.leeds.ccg.andyt.vector.visualisation.VectorRender
Deprecated.  
VectorRenderNetwork2D - Class in uk.ac.leeds.ccg.andyt.vector.visualisation
Class for rendering Vector_Network2D instances.
VectorRenderNetwork2D() - Constructor for class uk.ac.leeds.ccg.andyt.vector.visualisation.VectorRenderNetwork2D
 
VectorRenderNetwork2D(JFrame) - Constructor for class uk.ac.leeds.ccg.andyt.vector.visualisation.VectorRenderNetwork2D
 
VectorRenderNetwork2D(JFrame, int, int, HashSet<Vector_Network2D>) - Constructor for class uk.ac.leeds.ccg.andyt.vector.visualisation.VectorRenderNetwork2D
 
VectorRenderNetwork2D(JFrame, int, int, HashSet<Vector_Network2D>, Vector_Envelope2D) - Constructor for class uk.ac.leeds.ccg.andyt.vector.visualisation.VectorRenderNetwork2D
 
VectorStaticBigDecimal - Class in uk.ac.leeds.ccg.andyt.vector.misc
 
VectorStaticBigDecimal() - Constructor for class uk.ac.leeds.ccg.andyt.vector.misc.VectorStaticBigDecimal
 

A C D E G H I M P R S T U V _