Uses of Class
core.math.Vec2Transform

Packages that use Vec2Transform
core.dflic This package contains classes which create and evolve the individual FLIC images making up a movie of a given experiment. 
core.image This package creates and evolves the individual FLIC images making up a movie of a given experiment. 
core.math This package contains a variety of classes which handle vector manipulations and the evolution of a given experiment as it evolves. 
 

Uses of Vec2Transform in core.dflic
 

Fields in core.dflic declared as Vec2Transform
private  Vec2Transform FLIC.ftoo
           
private  Vec2Transform FLIC.otof
           
private  Vec2Transform FLIC.ftoi
           
private  Vec2Transform FLIC.itoo
           
private  Vec2Transform DFLIC.ftoo
           
private  Vec2Transform DFLIC.otof
           
private  Vec2Transform DFLIC.ftoi
           
private  Vec2Transform DFLIC.itof
           
 

Methods in core.dflic with parameters of type Vec2Transform
 void FLIC.SetFtoITransform(Vec2Transform ftoi)
          Sets the vector field-to-input image transformation to "ftoi".
 void FLIC.SetFtoOTransform(Vec2Transform ftoo)
          Sets the vector field-to-output image transformation to "ftoo".
 void DFLIC.SetFtoOTransform(Vec2Transform ftoo)
          Sets the mapping from the vector fields to the output image to "ftoo", and adjusts the inverse mapping accordingly.
 void DFLIC.SetOtoFTransform(Vec2Transform otof)
          Sets the mapping from the output image to the vector field to "otof", and adjusts the inverse mapping accordingly.
 

Constructors in core.dflic with parameters of type Vec2Transform
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 Vec2Transform in core.image
 

Methods in core.image with parameters of type Vec2Transform
 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)
           
 

Uses of Vec2Transform in core.math
 

Methods in core.math that return Vec2Transform
 Vec2Transform Vec2Transform.invert()
          Returns: a new Vec2Transform that is the inverse of 'this'
 Vec2Transform Vec2Transform.concatenate(Vec2Transform transform)
          Returns: a new Vec2Transform that is the concatenation of 'this' followed by 'transform'
 Vec2Transform Vec2Transform.translate(Vec2 origin)
          Returns: a new Vec2Transform that is 'this' translated by 'origin'
 Vec2Transform Vec2Transform.scale(double scale)
          Returns: a new Vec2Transform that is 'this' scaled by 'scale'
 Vec2Transform Vec2Transform.rotate(double theta)
          Returns: a new Vec2Transform that is 'this' rotated counter-clockwise by 'theta'
 Vec2Transform Vec2Transform.reflect(Vec2 d)
          Returns: a new Vec2Transform that is 'this' reflected across 'd'
 

Methods in core.math with parameters of type Vec2Transform
 Vec2Transform Vec2Transform.concatenate(Vec2Transform transform)
          Returns: a new Vec2Transform that is the concatenation of 'this' followed by 'transform'
 

Constructors in core.math with parameters of type Vec2Transform
Vec2Transform(Vec2Transform transform)
          Constructs a new Vec2Transform = 'transform'