Universe.Physics.BulletSPlugin.BSAPIUnman.SetFrames C# (CSharp) Method

SetFrames() public method

public SetFrames ( BulletConstraint constrain, System.Vector3 frameA, Quaternion frameArot, System.Vector3 frameB, Quaternion frameBrot ) : bool
constrain BulletConstraint
frameA System.Vector3
frameArot Quaternion
frameB System.Vector3
frameBrot Quaternion
return bool
        public override bool SetFrames(BulletConstraint constrain,
            Vector3 frameA, Quaternion frameArot, Vector3 frameB, Quaternion frameBrot)
        {
            BulletConstraintUnman constrainu = constrain as BulletConstraintUnman;
            return BSAPICPP.SetFrames2(constrainu.ptr, frameA, frameArot, frameB, frameBrot);
        }
BSAPIUnman