BEPUphysics.CollisionShapes.ConvexShapes.ConvexShapeEntry.ConvexShapeEntry C# (CSharp) Method

ConvexShapeEntry() public method

Constructs a convex shape entry.
public ConvexShapeEntry ( RigidTransform transform, ConvexShape shape ) : System
transform BEPUutilities.RigidTransform Local transform of the entry.
shape ConvexShape Shape of the entry.
return System
        public ConvexShapeEntry(RigidTransform transform, ConvexShape shape)
        {
            Transform = transform;
            CollisionShape = shape;
        }

Same methods

ConvexShapeEntry::ConvexShapeEntry ( ConvexShape shape ) : System
ConvexShapeEntry::ConvexShapeEntry ( Quaternion orientation, ConvexShape shape ) : System
ConvexShapeEntry::ConvexShapeEntry ( System.Vector3 position, ConvexShape shape ) : System
ConvexShapeEntry