Universe.Physics.BulletSPlugin.BSAPITemplate.CreatePoint2PointConstraint C# (CSharp) Method

CreatePoint2PointConstraint() public abstract method

public abstract CreatePoint2PointConstraint ( BulletWorld world, BulletBody obj1, BulletBody obj2, System.Vector3 pivotInA, System.Vector3 pivotInB, bool disableCollisionsBetweenLinkedBodies ) : BulletConstraint
world BulletWorld
obj1 BulletBody
obj2 BulletBody
pivotInA System.Vector3
pivotInB System.Vector3
disableCollisionsBetweenLinkedBodies bool
return BulletConstraint
        public abstract BulletConstraint CreatePoint2PointConstraint(BulletWorld world, BulletBody obj1, BulletBody obj2,
            Vector3 pivotInA, Vector3 pivotInB,
            bool disableCollisionsBetweenLinkedBodies);
BSAPITemplate