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

TransformableShape() public method

Constructs a new transformable shape.
public TransformableShape ( ConvexShape shape, Matrix3x3 transform ) : System
shape ConvexShape Base shape to transform.
transform BEPUutilities.Matrix3x3 Transform to use.
return System
        public TransformableShape(ConvexShape shape, Matrix3x3 transform)
        {
            this.shape = shape;
            Transform = transform;

        }