BEPUphysics.CollisionShapes.ConvexShapes.ConvexShapeEntry.ConvexShapeEntry C# (CSharp) Méthode

ConvexShapeEntry() public méthode

Constructs a convex shape entry.
public ConvexShapeEntry ( Quaternion orientation, ConvexShape shape ) : System
orientation Quaternion Local orientation of the entry.
shape ConvexShape Shape of the entry.
Résultat System
        public ConvexShapeEntry(Quaternion orientation, ConvexShape shape)
        {
            Transform = new RigidTransform(orientation);
            CollisionShape = shape;
        }

Same methods

ConvexShapeEntry::ConvexShapeEntry ( ConvexShape shape ) : System
ConvexShapeEntry::ConvexShapeEntry ( RigidTransform transform, ConvexShape shape ) : System
ConvexShapeEntry::ConvexShapeEntry ( System.Vector3 position, ConvexShape shape ) : System
ConvexShapeEntry