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

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

Computes the center of the shape. This can be considered its center of mass.
public ComputeCenter ( ) : System.Vector3
Результат System.Vector3
        public override Vector3 ComputeCenter()
        {
            //All convexes under acceptably normal circumstances are centered on the local origin.
            //The linear transform performs rotation, scaling, and shearing.  All of these operations will not move the origin.
            return Vector3.Zero;
        }

Same methods

TransformableShape::ComputeCenter ( float &volume ) : System.Vector3