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

OrientedConvexShapeEntry() public method

Constructs a new entry with identity orientation.
public OrientedConvexShapeEntry ( ConvexShape shape ) : System
shape ConvexShape Shape of the entry.
return System
        public OrientedConvexShapeEntry(ConvexShape shape)
        {
            Orientation = Quaternion.Identity;
            CollisionShape = shape;
        }
    }

Same methods

OrientedConvexShapeEntry::OrientedConvexShapeEntry ( Microsoft.Xna.Framework.Quaternion orientation, ConvexShape shape ) : System
OrientedConvexShapeEntry