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

ConvexShapeEntry() public method

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

Same methods

ConvexShapeEntry::ConvexShapeEntry ( ConvexShape shape ) : System
ConvexShapeEntry::ConvexShapeEntry ( Quaternion orientation, ConvexShape shape ) : System
ConvexShapeEntry::ConvexShapeEntry ( RigidTransform transform, ConvexShape shape ) : System
ConvexShapeEntry