Uses of Class
cas.CASTRSet

Packages that use CASTRSet
cas Provides classes defining CAS (Character Animation Stream) data objects. 
jarp Provides the main Java ARP classes, that is, the classes defining the avatar's skeleton, mesh, morphs, camera control, and JOGL rendering canvas. 
 

Uses of CASTRSet in cas
 

Methods in cas that return CASTRSet
 CASTRSet[] CASFrame.getPRSets()
          Gets the PR-Set (bones) array for this frame.
 

Methods in cas with parameters of type CASTRSet
 void CASFrame.copy(float time, float dur, CASTRSet[] bones, CASMorph[] morphs)
          Completely redefines this frame by creating its own copies of all the given data.
 void CASTRSet.set(CASTRSet prs)
          Sets this PR-Set to be a copy the given one.
 void CASFrame.set(float time, float dur, CASTRSet[] bones, CASMorph[] morphs)
          Completely redefines this frame by attaching the given data to it (that is, the array references are copied, not the arrays themselves).
 

Constructors in cas with parameters of type CASTRSet
CASFrame(CASTRSet[] bones, CASMorph[] morphs)
          Constructs a frame using the given arrays.
CASFrame(float time, CASTRSet[] bones, CASMorph[] morphs)
          Constructs a frame using the given time-stamp and data arrays.
CASFrame(float time, float dur, CASTRSet[] bones, CASMorph[] morphs)
          Constructs a frame using the given time-stamp, duration, and data arrays.
CASTRSet(CASTRSet prs)
          Constructs a new PR-Set, copied from the given one.
 

Uses of CASTRSet in jarp
 

Methods in jarp with parameters of type CASTRSet
 void Bone.assignNewPRData(CASTRSet newpr, float scale)
          Update this bone's PR-Set data (which is relative to its parent).
 void Skeleton.setBones(CASTRSet[] prsets)
          Sets the bones' TR-set data from the given TR-sets.
 void Skeleton.setBones(CASTRSet[] prsets, float scale)
          Sets the bones' TR-sets from those given, with the given scaling.