BEPUphysics.CollisionShapes.ConvexShapes.MinkowskiSumShape.MinkowskiSumShape C# (CSharp) Метод

MinkowskiSumShape() публичный Метод

Constructs a minkowski sum shape. A minkowski sum can be created from more than two objects; use the other constructors. The sum will be recentered on its local origin.
public MinkowskiSumShape ( OrientedConvexShapeEntry firstShape, OrientedConvexShapeEntry secondShape, Vector3 &center ) : System
firstShape OrientedConvexShapeEntry First entry in the sum.
secondShape OrientedConvexShapeEntry Second entry in the sum.
center Vector3 Center of the minkowski sum computed pre-recentering.
Результат System
        public MinkowskiSumShape(OrientedConvexShapeEntry firstShape, OrientedConvexShapeEntry secondShape, out Vector3 center)
            : this(firstShape, secondShape)
        {
            center = -localOffset;
        }

Same methods

MinkowskiSumShape::MinkowskiSumShape ( IList shapeEntries ) : System
MinkowskiSumShape::MinkowskiSumShape ( IList shapeEntries, Vector3 &center ) : System
MinkowskiSumShape::MinkowskiSumShape ( OrientedConvexShapeEntry firstShape, OrientedConvexShapeEntry secondShape ) : System