Uses of Class
core.field.Vec2Field

Packages that use Vec2Field
core.dflic This package contains classes which create and evolve the individual FLIC images making up a movie of a given experiment. 
core.field This package contains a number of classes used to create and manipulate the images generated for a given animation of an experiment as it evolves. 
core.image This package creates and evolves the individual FLIC images making up a movie of a given experiment. 
 

Uses of Vec2Field in core.dflic
 

Fields in core.dflic declared as Vec2Field
private  Vec2Field Streamline.field
           
private  Vec2Field FLIC.field
           
private  Vec2Field DFLIC.field
          privately stores the state of the DFLIC object from frame-to-frame.
private  Vec2Field DFLIC.dfield
          privately stores the state of the DFLIC object from frame-to-frame.
 

Methods in core.dflic with parameters of type Vec2Field
 void Streamline.SetField(Vec2Field field)
          Sets the vector field that is traced to "field"
 void FLIC.SetField(Vec2Field field)
          Sets the vector field to "field"
 void DFLIC.SetField(Vec2Field field)
          Sets the field we would like to visualize to "field"
 void DFLIC.SetDField(Vec2Field dfield)
          Sets the motion of the field line points to "dfield"
 

Constructors in core.dflic with parameters of type Vec2Field
Streamline(Vec2Field field)
          Constructs a new Streamline object that stores the parameters for successive streamline computations.
Streamline(Vec2Field field, double stepsize)
          Constructs a new Streamline object that stores the parameters for successive streamline computations.
Streamline(Vec2Field field, double stepsize, double minstep, double maxstep, double tolerance)
          Constructs a new Streamline object that stores the parameters for successive streamline computations.
FLIC(ScalarImage input, AccumImage output, Vec2Field field, Vec2Transform ftoi, Vec2Transform ftoo)
          Constructs an instance of a FLIC with the given initial parameters.
DFLIC(Vec2Field field, Vec2Field dfield, AccumImage output, Vec2Transform ftoo)
          DFLIC constructs a new DFLIC object with the given initial parameters.
 

Uses of Vec2Field in core.field
 

Subclasses of Vec2Field in core.field
 class EMVec2Field
          A planar cross-section of an E&M field, or of the four different velocity fields associated with an E&M field.
 class Vec2FieldCache
          Precomputed Vec2Field on a grid with bilinear interpolation.
 class Vec2UnitField
          Normalized 2-D vector field.
 

Fields in core.field declared as Vec2Field
private  Vec2Field Vec2UnitField.field
           
private  Vec2Field Vec2FieldCache.field
           
 

Constructors in core.field with parameters of type Vec2Field
Vec2UnitField(Vec2Field field)
          Constructs a new Vec2UnitField that is the same as 'field' but with all the vector values normalize to unit magnitude.
Vec2FieldCache(Vec2Field field, Vec2 p1, Vec2 p2, int width, int height)
          Constructs a new Vec2FieldCache that approximates "field" inside the rectangular region whose corners are given by "p1" and "p2".
 

Uses of Vec2Field in core.image
 

Methods in core.image with parameters of type Vec2Field
 void ScalarImage.Vec2FieldMagnitude(Vec2Field field, Vec2Transform ftoi)
           
 void ScalarImage.Vec2FieldZero(Vec2Field field, Vec2Transform ftoi)
           
 void RGBImage.fromScalarImageMagnitude(ScalarImage image, Vec2Field f, Vec2Transform ftoi, Vec3Field func)