Uses of Class
artofillusion.animation.Track

Packages that use Track
artofillusion.animation   
artofillusion.animation.distortion   
artofillusion.object   
 

Uses of Track in artofillusion.animation
 

Subclasses of Track in artofillusion.animation
 class ConstraintTrack
          This is a Track which places constraints on the position or orientation of an object.
 class FilterParameterTrack
          This is a Track which allows the parameters of an ImageFilter to be keyframed.
 class IKTrack
          This is a Track which modifies the shape of an object using inverse kinematics.
 class PoseTrack
          This is a Track which controls the pose of an object.
 class PositionTrack
          This is a Track which controls the position of an object.
 class ProceduralPositionTrack
          This is a Track which uses a procedure to control the position of an object.
 class ProceduralRotationTrack
          This is a Track which uses a procedure to control the orientation of an object.
 class RotationTrack
          This is a Track which controls the rotation of an object.
 class TextureTrack
          This is a Track which controls the value of a texture parameter.
 class VisibilityTrack
          This is a Track which controls whether an object is visible.
 class WeightTrack
          This is a Track which controls the weight given to another track.
 

Fields in artofillusion.animation declared as Track
 Track SelectionInfo.track
           
 

Methods in artofillusion.animation that return Track
 Track WeightTrack.duplicate(java.lang.Object parent)
           
 Track VisibilityTrack.duplicate(java.lang.Object obj)
           
abstract  Track Track.duplicate(java.lang.Object parent)
          Create a duplicate of this track (possibly for another object and/or parent track).
 Track TextureTrack.duplicate(java.lang.Object obj)
           
 Track RotationTrack.duplicate(java.lang.Object obj)
          Create a duplicate of this track.
 Track ProceduralRotationTrack.duplicate(java.lang.Object obj)
           
 Track ProceduralPositionTrack.duplicate(java.lang.Object obj)
           
 Track PositionTrack.duplicate(java.lang.Object obj)
          Create a duplicate of this track.
 Track PoseTrack.duplicate(java.lang.Object obj)
          Create a duplicate of this track.
 Track IKTrack.duplicate(java.lang.Object obj)
          Create a duplicate of this track.
 Track FilterParameterTrack.duplicate(java.lang.Object obj)
          Create a duplicate of this track.
 Track ConstraintTrack.duplicate(java.lang.Object obj)
          Create a duplicate of this track.
 Track[] Score.getSelectedTracks()
          Get the currently selected tracks.
 Track[] Track.getSubtracks()
          Get any child tracks of this track.
 Track[] TextureTrack.getSubtracks()
           
 Track[] RotationTrack.getSubtracks()
          This has a single child track.
 Track[] ProceduralRotationTrack.getSubtracks()
           
 Track[] ProceduralPositionTrack.getSubtracks()
           
 Track[] PositionTrack.getSubtracks()
          This has a single child track.
 Track[] PoseTrack.getSubtracks()
          This has a single child track.
 Track[] IKTrack.getSubtracks()
          This has a single child track.
 Track[] FilterParameterTrack.getSubtracks()
          This has no child tracks.
 Track[] ConstraintTrack.getSubtracks()
          This has a single child track.
 

Methods in artofillusion.animation with parameters of type Track
 void WeightTrack.copy(Track tr)
           
 void VisibilityTrack.copy(Track tr)
           
abstract  void Track.copy(Track tr)
          Make this track identical to another one.
 void TextureTrack.copy(Track tr)
           
 void RotationTrack.copy(Track tr)
          Make this track identical to another one.
 void ProceduralRotationTrack.copy(Track tr)
           
 void ProceduralPositionTrack.copy(Track tr)
           
 void PositionTrack.copy(Track tr)
          Make this track identical to another one.
 void PoseTrack.copy(Track tr)
          Make this track identical to another one.
 void IKTrack.copy(Track tr)
          Make this track identical to another one.
 void FilterParameterTrack.copy(Track tr)
          Make this track identical to another one.
 void ConstraintTrack.copy(Track tr)
          Make this track identical to another one.
 void Score.finishEditingTrack(Track tr)
          This method should be called when a track is done being edited.
 void PoseTrack.setSubtracks(Track[] extraSubtracks)
          Set the list of subtracks (other than the weight track) for this track.
 void TrackGraph.setTracks(Track[] t)
          Set the list of tracks to display on this graph.
 

Constructors in artofillusion.animation with parameters of type Track
SelectionInfo(Track tr, Keyframe k)
           
TrackTreeElement(Track tr, TreeElement parent, TreeList tree)
           
WeightTrack(Track parent)
           
 

Uses of Track in artofillusion.animation.distortion
 

Subclasses of Track in artofillusion.animation.distortion
 class BendTrack
          This is a Track which applies a BendDistortion to an object.
 class CustomDistortionTrack
          This is a Track which uses a procedure to deform object.
 class ScaleTrack
          This is a Track which applies a ScaleDistortion to an object.
 class ShatterTrack
          This is a Track which applies a ShatterDistortion to an object.
 class SkeletonShapeTrack
          This is a Track which applies a SkeletonDistortion to an object.
 class TwistTrack
          This is a Track which applies a TwistDistortion to an object.
 

Methods in artofillusion.animation.distortion that return Track
 Track TwistTrack.duplicate(java.lang.Object obj)
          Create a duplicate of this track.
 Track SkeletonShapeTrack.duplicate(java.lang.Object obj)
          Create a duplicate of this track.
 Track ShatterTrack.duplicate(java.lang.Object obj)
           
 Track ScaleTrack.duplicate(java.lang.Object obj)
           
 Track CustomDistortionTrack.duplicate(java.lang.Object obj)
           
 Track BendTrack.duplicate(java.lang.Object obj)
           
 Track[] TwistTrack.getSubtracks()
          This has a single child track.
 Track[] SkeletonShapeTrack.getSubtracks()
          This has a single child track.
 Track[] ScaleTrack.getSubtracks()
           
 Track[] CustomDistortionTrack.getSubtracks()
           
 Track[] BendTrack.getSubtracks()
           
 

Methods in artofillusion.animation.distortion with parameters of type Track
 void TwistTrack.copy(Track tr)
          Make this track identical to another one.
 void SkeletonShapeTrack.copy(Track tr)
          Make this track identical to another one.
 void ShatterTrack.copy(Track tr)
           
 void ScaleTrack.copy(Track tr)
           
 void CustomDistortionTrack.copy(Track tr)
           
 void BendTrack.copy(Track tr)
           
 

Uses of Track in artofillusion.object
 

Fields in artofillusion.object declared as Track
 Track[] ObjectInfo.tracks
           
 

Methods in artofillusion.object that return Track
 Track[] ObjectInfo.getTracks()
          Get the list of Tracks for this object.
 

Methods in artofillusion.object with parameters of type Track
 void ObjectInfo.addTrack(Track tr, int position)
          Add a track to this object.
 void ObjectInfo.removeTrack(Track tr)
          Remove a track from this object.
 



Copyright © 1999-2011 by Peter Eastman.